| 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 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 323 if (!is_mac) { | 323 if (!is_mac) { |
| 324 sources += | 324 sources += |
| 325 rebase_path(gypi_values.chrome_browser_ui_views_non_mac_sources, | 325 rebase_path(gypi_values.chrome_browser_ui_views_non_mac_sources, |
| 326 ".", | 326 ".", |
| 327 "//chrome") | 327 "//chrome") |
| 328 if (use_aura) { | 328 if (use_aura) { |
| 329 deps += [ | 329 deps += [ |
| 330 "//components/mus/public/cpp", | 330 "//components/mus/public/cpp", |
| 331 "//components/mus/public/interfaces", | 331 "//components/mus/public/interfaces", |
| 332 ] | 332 ] |
| 333 |
| 334 # TODO(erg): These files hard depend on mus, and thus can't be in a gyp |
| 335 # build. When gyp goes away, merge this back into the sources list. |
| 336 sources += [ |
| 337 "views/tabs/window_finder_mus.cc", |
| 338 "views/tabs/window_finder_mus.h", |
| 339 ] |
| 333 } | 340 } |
| 334 if (enable_extensions) { | 341 if (enable_extensions) { |
| 335 sources += rebase_path( | 342 sources += rebase_path( |
| 336 gypi_values.chrome_browser_ui_views_extensions_non_mac_sources, | 343 gypi_values.chrome_browser_ui_views_extensions_non_mac_sources, |
| 337 ".", | 344 ".", |
| 338 "//chrome") | 345 "//chrome") |
| 339 } | 346 } |
| 340 } | 347 } |
| 341 if (use_ash) { | 348 if (use_ash) { |
| 342 sources += rebase_path(gypi_values.chrome_browser_ui_ash_views_sources, | 349 sources += rebase_path(gypi_values.chrome_browser_ui_ash_views_sources, |
| (...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 715 "//chrome/browser", | 722 "//chrome/browser", |
| 716 "//content/public/browser", | 723 "//content/public/browser", |
| 717 "//content/public/common", | 724 "//content/public/common", |
| 718 "//content/test:test_support", | 725 "//content/test:test_support", |
| 719 "//net:test_support", | 726 "//net:test_support", |
| 720 "//skia", | 727 "//skia", |
| 721 "//testing/gtest", | 728 "//testing/gtest", |
| 722 "//ui/base", | 729 "//ui/base", |
| 723 ] | 730 ] |
| 724 } | 731 } |
| OLD | NEW |