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 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
203 rebase_path(gypi_values.chrome_browser_ui_views_non_chromeos_sources, | 203 rebase_path(gypi_values.chrome_browser_ui_views_non_chromeos_sources, |
204 ".", | 204 ".", |
205 "//chrome") | 205 "//chrome") |
206 } | 206 } |
207 if (!is_mac) { | 207 if (!is_mac) { |
208 sources += | 208 sources += |
209 rebase_path(gypi_values.chrome_browser_ui_views_non_mac_sources, | 209 rebase_path(gypi_values.chrome_browser_ui_views_non_mac_sources, |
210 ".", | 210 ".", |
211 "//chrome") | 211 "//chrome") |
212 deps += [ "//extensions/components/native_app_window" ] | 212 deps += [ "//extensions/components/native_app_window" ] |
213 if (is_chromeos) { | |
214 sources -= [ | |
215 "views/frame/opaque_browser_frame_view.cc", | |
216 "views/frame/opaque_browser_frame_view.h", | |
217 "views/frame/opaque_browser_frame_view_linux.cc", | |
218 "views/frame/opaque_browser_frame_view_linux.h", | |
Dirk Pranke
2015/04/23 01:19:17
these files get stripped out of ui_views_non_mac_s
Elliot Glaysher
2015/04/23 17:12:22
I think that can wait until after we stop using gy
Dirk Pranke
2015/04/27 20:40:11
ok.
| |
219 ] | |
220 } | |
213 } | 221 } |
214 if (use_ash) { | 222 if (use_ash) { |
215 sources += rebase_path(gypi_values.chrome_browser_ui_ash_views_sources, | 223 sources += rebase_path(gypi_values.chrome_browser_ui_ash_views_sources, |
216 ".", | 224 ".", |
217 "//chrome") | 225 "//chrome") |
218 } | 226 } |
219 } | 227 } |
220 if (use_aura && !use_ozone && is_desktop_linux) { | 228 if (use_aura && !use_ozone && is_desktop_linux) { |
221 deps += [ | 229 deps += [ |
222 "//build/config/linux:gio", | 230 "//build/config/linux:gio", |
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
498 "//chrome/browser", | 506 "//chrome/browser", |
499 "//content/public/browser", | 507 "//content/public/browser", |
500 "//content/public/common", | 508 "//content/public/common", |
501 "//content/test:test_support", | 509 "//content/test:test_support", |
502 "//net:test_support", | 510 "//net:test_support", |
503 "//skia", | 511 "//skia", |
504 "//testing/gtest", | 512 "//testing/gtest", |
505 "//ui/base", | 513 "//ui/base", |
506 ] | 514 ] |
507 } | 515 } |
OLD | NEW |