| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 if (is_android) { | 5 if (is_android) { |
| 6 import("//build/config/android/config.gni") | 6 import("//build/config/android/config.gni") |
| 7 import("//build/config/android/rules.gni") | 7 import("//build/config/android/rules.gni") |
| 8 } | 8 } |
| 9 | 9 |
| 10 component("blimp_client") { | 10 component("blimp_client") { |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 "compositor/render_widget_message_processor_unittest.cc", | 49 "compositor/render_widget_message_processor_unittest.cc", |
| 50 ] | 50 ] |
| 51 | 51 |
| 52 deps = [ | 52 deps = [ |
| 53 ":blimp_client", | 53 ":blimp_client", |
| 54 "//base", | 54 "//base", |
| 55 "//base/test:run_all_unittests", | 55 "//base/test:run_all_unittests", |
| 56 "//base/test:test_support", | 56 "//base/test:test_support", |
| 57 "//blimp/common/proto", | 57 "//blimp/common/proto", |
| 58 "//blimp/net:blimp_net", | 58 "//blimp/net:blimp_net", |
| 59 "//blimp/net:test_support", |
| 59 "//cc/proto", | 60 "//cc/proto", |
| 60 "//testing/gmock", | 61 "//testing/gmock", |
| 61 "//testing/gtest", | 62 "//testing/gtest", |
| 62 ] | 63 ] |
| 63 } | 64 } |
| 64 | 65 |
| 65 if (is_android) { | 66 if (is_android) { |
| 66 manifest_package = "org.chromium.blimp" | 67 manifest_package = "org.chromium.blimp" |
| 67 blimp_apk_manifest = "$target_gen_dir/blimp_apk_manifest/AndroidManifest.xml" | 68 blimp_apk_manifest = "$target_gen_dir/blimp_apk_manifest/AndroidManifest.xml" |
| 68 blimp_test_apk_manifest = | 69 blimp_test_apk_manifest = |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 apk_name = "BlimpTest" | 237 apk_name = "BlimpTest" |
| 237 apk_under_test = ":blimp_apk" | 238 apk_under_test = ":blimp_apk" |
| 238 android_manifest = blimp_test_apk_manifest | 239 android_manifest = blimp_test_apk_manifest |
| 239 deps = [ | 240 deps = [ |
| 240 ":blimp_test_apk_manifest", | 241 ":blimp_test_apk_manifest", |
| 241 ":blimp_test_java", | 242 ":blimp_test_java", |
| 242 google_play_services_resources, | 243 google_play_services_resources, |
| 243 ] | 244 ] |
| 244 } | 245 } |
| 245 } | 246 } |
| OLD | NEW |