| 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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 "//ui/gl", | 270 "//ui/gl", |
| 271 "//url", | 271 "//url", |
| 272 "//v8", | 272 "//v8", |
| 273 ] | 273 ] |
| 274 | 274 |
| 275 # Annoyingly, this target and layouttest_support have circular includes. | 275 # Annoyingly, this target and layouttest_support have circular includes. |
| 276 allow_circular_includes_from = [ "//content/test:layouttest_support" ] | 276 allow_circular_includes_from = [ "//content/test:layouttest_support" ] |
| 277 | 277 |
| 278 if (enable_plugins) { | 278 if (enable_plugins) { |
| 279 deps += [ | 279 deps += [ |
| 280 "//cc/paint", |
| 280 "//content/ppapi_plugin", | 281 "//content/ppapi_plugin", |
| 281 "//ppapi:blink_deprecated_test_plugin", | 282 "//ppapi:blink_deprecated_test_plugin", |
| 282 "//ppapi:blink_test_plugin", | 283 "//ppapi:blink_test_plugin", |
| 283 "//ppapi/shared_impl", | 284 "//ppapi/shared_impl", |
| 284 ] | 285 ] |
| 285 } | 286 } |
| 286 if (mojo_media_host == "browser") { | 287 if (mojo_media_host == "browser") { |
| 287 deps += [ "//media/mojo/services" ] | 288 deps += [ "//media/mojo/services" ] |
| 288 } | 289 } |
| 289 | 290 |
| (...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 799 data_deps += [ | 800 data_deps += [ |
| 800 "//breakpad:dump_syms", | 801 "//breakpad:dump_syms", |
| 801 "//breakpad:microdump_stackwalk", | 802 "//breakpad:microdump_stackwalk", |
| 802 "//breakpad:minidump_dump", | 803 "//breakpad:minidump_dump", |
| 803 "//breakpad:minidump_stackwalk", | 804 "//breakpad:minidump_stackwalk", |
| 804 "//breakpad:symupload", | 805 "//breakpad:symupload", |
| 805 "//tools/android/forwarder2", | 806 "//tools/android/forwarder2", |
| 806 ] | 807 ] |
| 807 } | 808 } |
| 808 } | 809 } |
| OLD | NEW |