-
Notifications
You must be signed in to change notification settings - Fork 10.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch GWT rules implementation from native to .bzl.
RELNOTES: GWT rules are now implemented in .bzl. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=327435789
- Loading branch information
1 parent
d8e921f
commit 23be71a
Showing
31 changed files
with
225 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,24 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<module> | ||
|
||
<source path=""/> | ||
|
||
<inherits name="com.google.gwt.user.User"/> | ||
|
||
<inherits name="com.google.gwt.junit.JUnit"/> | ||
|
||
<inherits name="com.google.common.annotations.Annotations"/> | ||
|
||
<inherits name="com.google.common.base.Base"/> | ||
|
||
<inherits name="com.google.common.collect.Collect"/> | ||
|
||
<inherits name="com.google.common.testing.Testing"/> | ||
|
||
<inherits name="com.google.common.truth.Truth"/> | ||
|
||
<entry-point class="com.google.common.base.TestModuleEntryPoint"/> | ||
|
||
<source path=""/> | ||
|
||
<super-source path="super"/> | ||
|
||
</module> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,28 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<module> | ||
|
||
<source path=""/> | ||
|
||
<inherits name="com.google.gwt.user.User"/> | ||
|
||
<inherits name="com.google.gwt.junit.JUnit"/> | ||
|
||
<inherits name="com.google.common.annotations.Annotations"/> | ||
|
||
<inherits name="com.google.common.base.Base"/> | ||
|
||
<inherits name="com.google.common.cache.Cache"/> | ||
|
||
<inherits name="com.google.common.collect.Collect"/> | ||
|
||
<inherits name="com.google.common.testing.Testing"/> | ||
|
||
<inherits name="com.google.common.util.concurrent.Concurrent"/> | ||
|
||
<inherits name="com.google.common.truth.Truth"/> | ||
|
||
<entry-point class="com.google.common.cache.TestModuleEntryPoint"/> | ||
|
||
<source path=""/> | ||
|
||
<super-source path="super"/> | ||
|
||
</module> |
14 changes: 12 additions & 2 deletions
14
guava-gwt/test/com/google/common/collect/testModule.gwt.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,30 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<module> | ||
|
||
<source path=""/> | ||
|
||
<inherits name="com.google.gwt.user.User"/> | ||
|
||
<inherits name="com.google.gwt.junit.JUnit"/> | ||
|
||
<inherits name="com.google.common.annotations.Annotations"/> | ||
|
||
<inherits name="com.google.common.base.Base"/> | ||
|
||
<inherits name="com.google.common.collect.Collect"/> | ||
|
||
<inherits name="com.google.common.collect.testing.Testing"/> | ||
|
||
<inherits name="com.google.common.collect.testing.google.Google"/> | ||
|
||
<inherits name="com.google.common.io.Io"/> | ||
|
||
<inherits name="com.google.common.testing.Testing"/> | ||
|
||
<inherits name="com.google.common.truth.Truth"/> | ||
|
||
<entry-point class="com.google.common.collect.TestModuleEntryPoint"/> | ||
|
||
<source path=""/> | ||
|
||
<super-source path="super"/> | ||
|
||
</module> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 9 additions & 2 deletions
11
guava-gwt/test/com/google/common/collect/testing/testModule.gwt.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,22 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<module> | ||
|
||
<source path=""/> | ||
|
||
<inherits name="com.google.gwt.user.User"/> | ||
|
||
<inherits name="com.google.gwt.junit.JUnit"/> | ||
|
||
<inherits name="com.google.common.annotations.Annotations"/> | ||
|
||
<inherits name="com.google.common.base.Base"/> | ||
|
||
<inherits name="com.google.common.collect.Collect"/> | ||
|
||
<inherits name="com.google.common.collect.testing.Testing"/> | ||
|
||
<inherits name="com.google.common.testing.Testing"/> | ||
|
||
<entry-point class="com.google.common.collect.testing.TestModuleEntryPoint"/> | ||
|
||
<source path=""/> | ||
|
||
</module> |
12 changes: 10 additions & 2 deletions
12
guava-gwt/test/com/google/common/escape/testModule.gwt.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,24 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<module> | ||
|
||
<source path=""/> | ||
|
||
<inherits name="com.google.gwt.user.User"/> | ||
|
||
<inherits name="com.google.gwt.junit.JUnit"/> | ||
|
||
<inherits name="com.google.common.base.Base"/> | ||
|
||
<inherits name="com.google.common.collect.Collect"/> | ||
|
||
<inherits name="com.google.common.escape.Escape"/> | ||
|
||
<inherits name="com.google.common.escape.testing.Testing"/> | ||
|
||
<inherits name="com.google.common.html.Html"/> | ||
|
||
<inherits name="com.google.common.testing.Testing"/> | ||
|
||
<entry-point class="com.google.common.escape.TestModuleEntryPoint"/> | ||
|
||
<source path=""/> | ||
|
||
</module> |
Oops, something went wrong.