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 | 8 |
9 gypi_values = exec_script("//build/gypi_to_gn.py", | 9 gypi_values = exec_script("//build/gypi_to_gn.py", |
10 [ rebase_path("../../chrome_browser_ui.gypi") ], | 10 [ rebase_path("../../chrome_browser_ui.gypi") ], |
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 "//ash", | 210 "//ash", |
211 "//ash:ash_with_content", | 211 "//ash:ash_with_content", |
212 "//ash/strings", | 212 "//ash/strings", |
213 "//components/user_manager", | 213 "//components/user_manager", |
214 ] | 214 ] |
215 if (!is_chromeos) { | 215 if (!is_chromeos) { |
216 sources += rebase_path(gypi_values.chrome_browser_ui_ash_non_chromeos, | 216 sources += rebase_path(gypi_values.chrome_browser_ui_ash_non_chromeos, |
217 ".", | 217 ".", |
218 "//chrome") | 218 "//chrome") |
219 } | 219 } |
| 220 if (enable_wayland_server) { |
| 221 deps += [ |
| 222 "//components/exo", |
| 223 "//components/exo/wayland", |
| 224 ] |
| 225 } |
220 } else { # Not ash. | 226 } else { # Not ash. |
221 sources += rebase_path(gypi_values.chrome_browser_ui_non_ash_sources, | 227 sources += rebase_path(gypi_values.chrome_browser_ui_non_ash_sources, |
222 ".", | 228 ".", |
223 "//chrome") | 229 "//chrome") |
224 } | 230 } |
225 if (toolkit_views) { | 231 if (toolkit_views) { |
226 sources += rebase_path(gypi_values.chrome_browser_ui_views_sources, | 232 sources += rebase_path(gypi_values.chrome_browser_ui_views_sources, |
227 ".", | 233 ".", |
228 "//chrome") | 234 "//chrome") |
229 deps += [ "//components/constrained_window" ] | 235 deps += [ "//components/constrained_window" ] |
(...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
598 "//chrome/browser", | 604 "//chrome/browser", |
599 "//content/public/browser", | 605 "//content/public/browser", |
600 "//content/public/common", | 606 "//content/public/common", |
601 "//content/test:test_support", | 607 "//content/test:test_support", |
602 "//net:test_support", | 608 "//net:test_support", |
603 "//skia", | 609 "//skia", |
604 "//testing/gtest", | 610 "//testing/gtest", |
605 "//ui/base", | 611 "//ui/base", |
606 ] | 612 ] |
607 } | 613 } |
OLD | NEW |