| 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/crypto.gni") | 5 import("//build/config/crypto.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//chrome/common/features.gni") | 8 import("//chrome/common/features.gni") |
| 9 | 9 |
| 10 gypi_values = exec_script("//build/gypi_to_gn.py", | 10 gypi_values = exec_script("//build/gypi_to_gn.py", |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 sources += | 295 sources += |
| 296 rebase_path(gypi_values.chrome_browser_ui_views_non_chromeos_sources, | 296 rebase_path(gypi_values.chrome_browser_ui_views_non_chromeos_sources, |
| 297 ".", | 297 ".", |
| 298 "//chrome") | 298 "//chrome") |
| 299 } | 299 } |
| 300 if (!is_mac) { | 300 if (!is_mac) { |
| 301 sources += | 301 sources += |
| 302 rebase_path(gypi_values.chrome_browser_ui_views_non_mac_sources, | 302 rebase_path(gypi_values.chrome_browser_ui_views_non_mac_sources, |
| 303 ".", | 303 ".", |
| 304 "//chrome") | 304 "//chrome") |
| 305 if (use_aura) { |
| 306 deps += [ |
| 307 "//components/mus/public/cpp", |
| 308 "//components/mus/public/interfaces", |
| 309 ] |
| 310 } |
| 305 if (enable_extensions) { | 311 if (enable_extensions) { |
| 306 sources += rebase_path( | 312 sources += rebase_path( |
| 307 gypi_values.chrome_browser_ui_views_extensions_non_mac_sources, | 313 gypi_values.chrome_browser_ui_views_extensions_non_mac_sources, |
| 308 ".", | 314 ".", |
| 309 "//chrome") | 315 "//chrome") |
| 310 } | 316 } |
| 311 } | 317 } |
| 312 if (use_ash) { | 318 if (use_ash) { |
| 313 sources += rebase_path(gypi_values.chrome_browser_ui_ash_views_sources, | 319 sources += rebase_path(gypi_values.chrome_browser_ui_ash_views_sources, |
| 314 ".", | 320 ".", |
| (...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 667 "//chrome/browser", | 673 "//chrome/browser", |
| 668 "//content/public/browser", | 674 "//content/public/browser", |
| 669 "//content/public/common", | 675 "//content/public/common", |
| 670 "//content/test:test_support", | 676 "//content/test:test_support", |
| 671 "//net:test_support", | 677 "//net:test_support", |
| 672 "//skia", | 678 "//skia", |
| 673 "//testing/gtest", | 679 "//testing/gtest", |
| 674 "//ui/base", | 680 "//ui/base", |
| 675 ] | 681 ] |
| 676 } | 682 } |
| OLD | NEW |