Chromium Code Reviews| 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 131 "//cc/proto", | 131 "//cc/proto", |
| 132 "//components/url_formatter", | 132 "//components/url_formatter", |
| 133 "//gpu/command_buffer/client", | 133 "//gpu/command_buffer/client", |
| 134 "//gpu/command_buffer/client:gl_in_process_context", | 134 "//gpu/command_buffer/client:gl_in_process_context", |
| 135 "//gpu/command_buffer/client:gles2_c_lib", | 135 "//gpu/command_buffer/client:gles2_c_lib", |
| 136 "//gpu/command_buffer/client:gles2_implementation", | 136 "//gpu/command_buffer/client:gles2_implementation", |
| 137 "//gpu/command_buffer/common:gles2_utils", | 137 "//gpu/command_buffer/common:gles2_utils", |
| 138 "//gpu/skia_bindings", | 138 "//gpu/skia_bindings", |
| 139 "//net", | 139 "//net", |
| 140 "//skia", | 140 "//skia", |
| 141 "//third_party/WebKit/public:blink", | |
|
nyquist
2016/05/03 16:43:30
Could you add a TODO to remove this, please? We re
| |
| 141 "//third_party/WebKit/public:blink_headers", | 142 "//third_party/WebKit/public:blink_headers", |
| 142 "//ui/base/ime:text_input_types", | 143 "//ui/base/ime:text_input_types", |
| 143 "//ui/events:gesture_detection", | 144 "//ui/events:gesture_detection", |
| 144 "//ui/events/blink", | 145 "//ui/events/blink", |
| 145 "//ui/events/gestures/blink", | 146 "//ui/events/gestures/blink", |
| 146 "//ui/gl", | 147 "//ui/gl", |
| 147 ] | 148 ] |
| 148 | 149 |
| 149 public_deps = [ | 150 public_deps = [ |
| 150 "//blimp/common/proto", | 151 "//blimp/common/proto", |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 430 apk_name = "BlimpTest" | 431 apk_name = "BlimpTest" |
| 431 apk_under_test = ":blimp_apk" | 432 apk_under_test = ":blimp_apk" |
| 432 android_manifest = blimp_test_apk_manifest | 433 android_manifest = blimp_test_apk_manifest |
| 433 deps = [ | 434 deps = [ |
| 434 ":blimp_test_apk_manifest", | 435 ":blimp_test_apk_manifest", |
| 435 ":blimp_test_java", | 436 ":blimp_test_java", |
| 436 google_play_services_resources, | 437 google_play_services_resources, |
| 437 ] | 438 ] |
| 438 } | 439 } |
| 439 } | 440 } |
| OLD | NEW |