| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/sanitizers/sanitizers.gni") | 6 import("//build/config/sanitizers/sanitizers.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//build/config/win/console_app.gni") | 8 import("//build/config/win/console_app.gni") |
| 9 import("//build/config/win/manifest.gni") | 9 import("//build/config/win/manifest.gni") |
| 10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 "//device/geolocation", | 238 "//device/geolocation", |
| 239 "//gin", | 239 "//gin", |
| 240 "//gpu", | 240 "//gpu", |
| 241 "//ipc", | 241 "//ipc", |
| 242 "//media", | 242 "//media", |
| 243 "//mojo/edk/js", | 243 "//mojo/edk/js", |
| 244 "//net", | 244 "//net", |
| 245 "//net:net_resources", | 245 "//net:net_resources", |
| 246 "//sandbox", | 246 "//sandbox", |
| 247 "//services/service_manager/public/cpp", | 247 "//services/service_manager/public/cpp", |
| 248 "//services/tracing:lib", |
| 249 "//services/ui:lib", |
| 250 "//services/ui/ime/test_ime_driver:lib", |
| 248 "//skia", | 251 "//skia", |
| 249 "//storage/browser", | 252 "//storage/browser", |
| 250 "//testing/gmock", | 253 "//testing/gmock", |
| 251 "//testing/gtest", | 254 "//testing/gtest", |
| 252 "//third_party/WebKit/public:blink", | 255 "//third_party/WebKit/public:blink", |
| 253 "//third_party/WebKit/public:image_resources", | 256 "//third_party/WebKit/public:image_resources", |
| 254 "//third_party/WebKit/public:resources", | 257 "//third_party/WebKit/public:resources", |
| 255 "//third_party/WebKit/public:test_support", | 258 "//third_party/WebKit/public:test_support", |
| 256 "//third_party/icu", | 259 "//third_party/icu", |
| 257 "//ui/base", | 260 "//ui/base", |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 # Some tests rely on this tool at runtime. Note: it might be better if | 304 # Some tests rely on this tool at runtime. Note: it might be better if |
| 302 # the tests that needed it had this as a dep instead of adding it here. | 305 # the tests that needed it had this as a dep instead of adding it here. |
| 303 data_deps = [ | 306 data_deps = [ |
| 304 "//tools/xdisplaycheck", | 307 "//tools/xdisplaycheck", |
| 305 ] | 308 ] |
| 306 | 309 |
| 307 deps += [ "//ui/events/devices/x11" ] | 310 deps += [ "//ui/events/devices/x11" ] |
| 308 } | 311 } |
| 309 | 312 |
| 310 if (is_android) { | 313 if (is_android) { |
| 311 deps += [ "//content/shell/android:content_shell_jni_headers" ] | 314 deps += [ |
| 315 "//content/shell/android:content_shell_jni_headers", |
| 316 "//services/ui/demo:mus_demo_lib", |
| 317 ] |
| 312 } | 318 } |
| 313 | 319 |
| 314 if (is_posix && !is_mac) { | 320 if (is_posix && !is_mac) { |
| 315 deps += [ | 321 deps += [ |
| 316 "//components/crash/content/app", | 322 "//components/crash/content/app", |
| 317 "//components/crash/content/browser", | 323 "//components/crash/content/browser", |
| 318 ] | 324 ] |
| 319 } | 325 } |
| 320 | 326 |
| 321 if (use_aura) { | 327 if (use_aura) { |
| (...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 740 "{{bundle_resources_dir}}/{{source_file_part}}", | 746 "{{bundle_resources_dir}}/{{source_file_part}}", |
| 741 ] | 747 ] |
| 742 } | 748 } |
| 743 } | 749 } |
| 744 | 750 |
| 745 mojom("mojo_bindings") { | 751 mojom("mojo_bindings") { |
| 746 sources = [ | 752 sources = [ |
| 747 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom", | 753 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom", |
| 748 ] | 754 ] |
| 749 } | 755 } |
| OLD | NEW |