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 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
713 "//chrome/browser", | 720 "//chrome/browser", |
714 "//content/public/browser", | 721 "//content/public/browser", |
715 "//content/public/common", | 722 "//content/public/common", |
716 "//content/test:test_support", | 723 "//content/test:test_support", |
717 "//net:test_support", | 724 "//net:test_support", |
718 "//skia", | 725 "//skia", |
719 "//testing/gtest", | 726 "//testing/gtest", |
720 "//ui/base", | 727 "//ui/base", |
721 ] | 728 ] |
722 } | 729 } |
OLD | NEW |