| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 deps = [ | 45 deps = [ |
| 46 "//base", | 46 "//base", |
| 47 "//blimp/common:blimp_common", | 47 "//blimp/common:blimp_common", |
| 48 "//blimp/common/proto", | 48 "//blimp/common/proto", |
| 49 "//blimp/net:blimp_net", | 49 "//blimp/net:blimp_net", |
| 50 "//cc", | 50 "//cc", |
| 51 "//cc/proto", | 51 "//cc/proto", |
| 52 "//gpu/command_buffer/client:gl_in_process_context", | 52 "//gpu/command_buffer/client:gl_in_process_context", |
| 53 "//gpu/command_buffer/common:gles2_utils", | 53 "//gpu/command_buffer/common:gles2_utils", |
| 54 "//gpu/skia_bindings", | 54 "//gpu/skia_bindings", |
| 55 "//net", |
| 55 "//ui/events/blink", | 56 "//ui/events/blink", |
| 56 "//ui/events/gestures/blink", | 57 "//ui/events/gestures/blink", |
| 57 "//ui/gfx/geometry", | 58 "//ui/gfx/geometry", |
| 58 "//ui/gl", | 59 "//ui/gl", |
| 59 "//url:url", | 60 "//url:url", |
| 60 ] | 61 ] |
| 61 } | 62 } |
| 62 | 63 |
| 63 source_set("unit_tests") { | 64 source_set("unit_tests") { |
| 64 testonly = true | 65 testonly = true |
| (...skipping 26 matching lines...) Expand all Loading... |
| 91 "linux/blimp_display_manager.cc", | 92 "linux/blimp_display_manager.cc", |
| 92 "linux/blimp_display_manager.h", | 93 "linux/blimp_display_manager.h", |
| 93 "linux/blimp_main.cc", | 94 "linux/blimp_main.cc", |
| 94 "session/blimp_client_session_linux.cc", | 95 "session/blimp_client_session_linux.cc", |
| 95 "session/blimp_client_session_linux.h", | 96 "session/blimp_client_session_linux.h", |
| 96 ] | 97 ] |
| 97 | 98 |
| 98 deps = [ | 99 deps = [ |
| 99 ":blimp_client", | 100 ":blimp_client", |
| 100 "//base", | 101 "//base", |
| 102 "//blimp/net:blimp_net", |
| 103 "//net", |
| 101 "//ui/events/platform/x11", | 104 "//ui/events/platform/x11", |
| 102 "//ui/platform_window/x11", | 105 "//ui/platform_window/x11", |
| 103 ] | 106 ] |
| 104 | 107 |
| 105 public_configs = [ "//build/config/linux:x11" ] | 108 public_configs = [ "//build/config/linux:x11" ] |
| 106 public_deps = [ | 109 public_deps = [ |
| 107 "//ui/events/platform/x11", | 110 "//ui/events/platform/x11", |
| 108 ] | 111 ] |
| 109 } | 112 } |
| 110 } | 113 } |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 apk_name = "BlimpTest" | 295 apk_name = "BlimpTest" |
| 293 apk_under_test = ":blimp_apk" | 296 apk_under_test = ":blimp_apk" |
| 294 android_manifest = blimp_test_apk_manifest | 297 android_manifest = blimp_test_apk_manifest |
| 295 deps = [ | 298 deps = [ |
| 296 ":blimp_test_apk_manifest", | 299 ":blimp_test_apk_manifest", |
| 297 ":blimp_test_java", | 300 ":blimp_test_java", |
| 298 google_play_services_resources, | 301 google_play_services_resources, |
| 299 ] | 302 ] |
| 300 } | 303 } |
| 301 } | 304 } |
| OLD | NEW |