Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(292)

Side by Side Diff: chrome/browser/ui/BUILD.gn

Issue 1054963007: Make the ChromeOS GN debug component build work (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | remoting/host/BUILD.gn » ('j') | remoting/host/BUILD.gn » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | remoting/host/BUILD.gn » ('j') | remoting/host/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698