Chromium Code Reviews| Index: remoting/BUILD.gn |
| diff --git a/remoting/BUILD.gn b/remoting/BUILD.gn |
| index 15a65a93334a1facaac25a949ef940baec83b79a..2aee690b047328580a8b0627e5a8aab577ef5ae2 100644 |
| --- a/remoting/BUILD.gn |
| +++ b/remoting/BUILD.gn |
| @@ -45,7 +45,6 @@ group("remoting_all") { |
| deps += [ |
| #"//remoting:remoting_apk", |
| #"//remoting:remoting_test_apk", |
| - #"//remoting:remoting_unittests_apk", |
|
Lambros
2015/11/24 19:12:45
I guess the convention is that commented-out lines
pkotwicz
2015/11/24 20:35:29
On Android, the test() template generates the _apk
Lambros
2015/11/24 23:45:40
Acknowledged.
|
| ] |
| } |
| @@ -142,10 +141,6 @@ if (!is_mac) { |
| "//third_party/webrtc", |
| ] |
| - if (is_android) { |
| - deps += [ "//testing/android/native_test:native_test_native_code" ] |
|
Lambros
2015/11/24 19:12:45
Is this removed, because the net_java "apk_deps" l
pkotwicz
2015/11/24 20:35:29
The test() template always adds in this dependency
Lambros
2015/11/24 23:45:40
Acknowledged.
|
| - } |
| - |
| if (enable_remoting_host) { |
| deps += [ |
| "//remoting/codec:unit_tests", |
| @@ -160,6 +155,10 @@ if (!is_mac) { |
| "//third_party/libjingle:libpeerconnection", |
| ] |
| } |
| + |
| + if (is_android) { |
| + apk_deps = [ "//net/android:net_java" ] |
|
Lambros
2015/11/24 19:12:45
I don't understand this. There aren't any Android
pkotwicz
2015/11/24 20:35:29
The test() template automatically generates the "_
Lambros
2015/11/24 23:45:40
Acknowledged.
|
| + } |
| } |
| if (enable_remoting_host) { |