| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 | 110 |
| 111 deps = [ | 111 deps = [ |
| 112 ":session", | 112 ":session", |
| 113 "//url", | 113 "//url", |
| 114 ] | 114 ] |
| 115 } | 115 } |
| 116 | 116 |
| 117 if (is_linux && !is_chromeos && use_x11) { | 117 if (is_linux && !is_chromeos && use_x11) { |
| 118 executable("blimp_shell") { | 118 executable("blimp_shell") { |
| 119 sources = [ | 119 sources = [ |
| 120 "app/linux/blimp_client_session_linux.cc", | 120 "app/linux/blimp_client_context_delegate_linux.cc", |
| 121 "app/linux/blimp_client_session_linux.h", | 121 "app/linux/blimp_client_context_delegate_linux.h", |
| 122 "app/linux/blimp_display_manager.cc", | 122 "app/linux/blimp_display_manager.cc", |
| 123 "app/linux/blimp_display_manager.h", | 123 "app/linux/blimp_display_manager.h", |
| 124 "app/linux/blimp_display_manager_delegate_main.cc", |
| 125 "app/linux/blimp_display_manager_delegate_main.h", |
| 124 "app/linux/blimp_main.cc", | 126 "app/linux/blimp_main.cc", |
| 125 ] | 127 ] |
| 126 | 128 |
| 127 deps = [ | 129 deps = [ |
| 128 ":client", | 130 ":client", |
| 129 "//base", | 131 "//base", |
| 130 "//blimp/client/core/compositor", | 132 "//blimp/client/core/compositor", |
| 131 "//blimp/client/core/session", | 133 "//blimp/client/core/session", |
| 132 "//blimp/net", | 134 "//blimp/net", |
| 133 "//net", | 135 "//net", |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 367 instrumentation_test_apk("blimp_test_apk") { | 369 instrumentation_test_apk("blimp_test_apk") { |
| 368 apk_name = "BlimpTest" | 370 apk_name = "BlimpTest" |
| 369 apk_under_test = ":blimp_apk" | 371 apk_under_test = ":blimp_apk" |
| 370 android_manifest = blimp_test_apk_manifest | 372 android_manifest = blimp_test_apk_manifest |
| 371 android_manifest_dep = ":blimp_test_apk_manifest" | 373 android_manifest_dep = ":blimp_test_apk_manifest" |
| 372 deps = [ | 374 deps = [ |
| 373 ":blimp_test_java", | 375 ":blimp_test_java", |
| 374 ] | 376 ] |
| 375 } | 377 } |
| 376 } | 378 } |
| OLD | NEW |