| 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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 | 6 |
| 7 if (is_android) { | 7 if (is_android) { |
| 8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
| 9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
| 10 } | 10 } |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 "app/linux/blimp_display_manager.h", | 231 "app/linux/blimp_display_manager.h", |
| 232 "app/linux/blimp_main.cc", | 232 "app/linux/blimp_main.cc", |
| 233 ] | 233 ] |
| 234 | 234 |
| 235 deps = [ | 235 deps = [ |
| 236 ":client", | 236 ":client", |
| 237 "//base", | 237 "//base", |
| 238 "//blimp/client:compositor", | 238 "//blimp/client:compositor", |
| 239 "//blimp/client/core/session", | 239 "//blimp/client/core/session", |
| 240 "//blimp/net", | 240 "//blimp/net", |
| 241 "//components/grpc_support", |
| 241 "//net", | 242 "//net", |
| 242 "//services/shell/public/cpp", | 243 "//services/shell/public/cpp", |
| 243 | 244 |
| 244 # TODO(khushalsagar|scottmg): Remove this dependency from browser to | 245 # TODO(khushalsagar|scottmg): Remove this dependency from browser to |
| 245 # blink. See https://crbug.com/608114. | 246 # blink. See https://crbug.com/608114. |
| 246 "//third_party/WebKit/public:blink", | 247 "//third_party/WebKit/public:blink", |
| 247 "//ui/events/platform/x11", | 248 "//ui/events/platform/x11", |
| 248 "//ui/platform_window", | 249 "//ui/platform_window", |
| 249 "//ui/platform_window/x11", | 250 "//ui/platform_window/x11", |
| 250 ] | 251 ] |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 474 instrumentation_test_apk("blimp_test_apk") { | 475 instrumentation_test_apk("blimp_test_apk") { |
| 475 apk_name = "BlimpTest" | 476 apk_name = "BlimpTest" |
| 476 apk_under_test = ":blimp_apk" | 477 apk_under_test = ":blimp_apk" |
| 477 android_manifest = blimp_test_apk_manifest | 478 android_manifest = blimp_test_apk_manifest |
| 478 android_manifest_dep = ":blimp_test_apk_manifest" | 479 android_manifest_dep = ":blimp_test_apk_manifest" |
| 479 deps = [ | 480 deps = [ |
| 480 ":blimp_test_java", | 481 ":blimp_test_java", |
| 481 ] | 482 ] |
| 482 } | 483 } |
| 483 } | 484 } |
| OLD | NEW |