| 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 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 323 | 323 |
| 324 if (is_posix && !is_mac) { | 324 if (is_posix && !is_mac) { |
| 325 deps += [ | 325 deps += [ |
| 326 "//components/crash/content/app", | 326 "//components/crash/content/app", |
| 327 "//components/crash/content/browser", | 327 "//components/crash/content/browser", |
| 328 ] | 328 ] |
| 329 } | 329 } |
| 330 | 330 |
| 331 if (use_aura) { | 331 if (use_aura) { |
| 332 deps += [ | 332 deps += [ |
| 333 "//services/navigation", | |
| 334 "//ui/aura", | 333 "//ui/aura", |
| 335 "//ui/aura:test_support", | 334 "//ui/aura:test_support", |
| 336 "//ui/events", | 335 "//ui/events", |
| 337 "//ui/strings", | 336 "//ui/strings", |
| 338 "//ui/wm", | 337 "//ui/wm", |
| 339 ] | 338 ] |
| 340 | 339 |
| 341 if (toolkit_views) { | 340 if (toolkit_views) { |
| 342 sources += [ | 341 sources += [ |
| 343 "browser/shell_views.cc", | 342 "browser/shell_views.cc", |
| (...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 806 data_deps += [ | 805 data_deps += [ |
| 807 "//breakpad:dump_syms", | 806 "//breakpad:dump_syms", |
| 808 "//breakpad:microdump_stackwalk", | 807 "//breakpad:microdump_stackwalk", |
| 809 "//breakpad:minidump_dump", | 808 "//breakpad:minidump_dump", |
| 810 "//breakpad:minidump_stackwalk", | 809 "//breakpad:minidump_stackwalk", |
| 811 "//breakpad:symupload", | 810 "//breakpad:symupload", |
| 812 "//tools/android/forwarder2", | 811 "//tools/android/forwarder2", |
| 813 ] | 812 ] |
| 814 } | 813 } |
| 815 } | 814 } |
| OLD | NEW |