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 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
282 "//ash", | 282 "//ash", |
283 "//ash:ash_with_content", | 283 "//ash:ash_with_content", |
284 "//ash/strings", | 284 "//ash/strings", |
285 "//ash/sysui/public/interfaces", | 285 "//ash/sysui/public/interfaces", |
286 "//components/user_manager", | 286 "//components/user_manager", |
287 "//mash/shelf/public/interfaces", | 287 "//mash/shelf/public/interfaces", |
288 "//ui/app_list/presenter", | 288 "//ui/app_list/presenter", |
289 "//ui/app_list/presenter:mojom", | 289 "//ui/app_list/presenter:mojom", |
290 "//ui/keyboard:mojom", | 290 "//ui/keyboard:mojom", |
291 ] | 291 ] |
292 if (!is_chromeos) { | |
293 sources += rebase_path(gypi_values.chrome_browser_ui_ash_non_chromeos, | |
294 ".", | |
295 "//chrome") | |
296 } | |
297 } else { # Not ash. | 292 } else { # Not ash. |
298 sources += rebase_path(gypi_values.chrome_browser_ui_non_ash_sources, | 293 sources += rebase_path(gypi_values.chrome_browser_ui_non_ash_sources, |
299 ".", | 294 ".", |
300 "//chrome") | 295 "//chrome") |
301 } | 296 } |
302 if (toolkit_views) { | 297 if (toolkit_views) { |
303 sources += rebase_path(gypi_values.chrome_browser_ui_views_sources, | 298 sources += rebase_path(gypi_values.chrome_browser_ui_views_sources, |
304 ".", | 299 ".", |
305 "//chrome") | 300 "//chrome") |
306 deps += [ "//components/constrained_window" ] | 301 deps += [ "//components/constrained_window" ] |
(...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
715 "//chrome/browser", | 710 "//chrome/browser", |
716 "//content/public/browser", | 711 "//content/public/browser", |
717 "//content/public/common", | 712 "//content/public/common", |
718 "//content/test:test_support", | 713 "//content/test:test_support", |
719 "//net:test_support", | 714 "//net:test_support", |
720 "//skia", | 715 "//skia", |
721 "//testing/gtest", | 716 "//testing/gtest", |
722 "//ui/base", | 717 "//ui/base", |
723 ] | 718 ] |
724 } | 719 } |
OLD | NEW |