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

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

Issue 1945893002: Split generated libraries out of //build/linux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 | « chrome/browser/extensions/BUILD.gn ('k') | chrome/test/BUILD.gn » ('j') | no next file with comments »
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 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 304 matching lines...) Expand 10 before | Expand all | Expand 10 after
315 "//chrome") 315 "//chrome")
316 } 316 }
317 } else { 317 } else {
318 # !toolkit_views 318 # !toolkit_views
319 if (!is_ios) { 319 if (!is_ios) {
320 deps -= [ "//chrome/browser/ui/views" ] 320 deps -= [ "//chrome/browser/ui/views" ]
321 } 321 }
322 } 322 }
323 if (use_aura && !use_ozone && is_desktop_linux) { 323 if (use_aura && !use_ozone && is_desktop_linux) {
324 deps += [ 324 deps += [
325 "//build/linux:gio", 325 "//build/linux/libgio",
326 326
327 # gtk2 is the only component that can interact with gtk2 in our new 327 # gtk2 is the only component that can interact with gtk2 in our new
328 # world. 328 # world.
329 "//chrome/browser/ui/libgtk2ui", 329 "//chrome/browser/ui/libgtk2ui",
330 ] 330 ]
331 } 331 }
332 if (is_win || is_mac || is_desktop_linux) { 332 if (is_win || is_mac || is_desktop_linux) {
333 sources += rebase_path(gypi_values.chrome_browser_ui_desktop_sources, 333 sources += rebase_path(gypi_values.chrome_browser_ui_desktop_sources,
334 ".", 334 ".",
335 "//chrome") 335 "//chrome")
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
673 "//chrome/browser", 673 "//chrome/browser",
674 "//content/public/browser", 674 "//content/public/browser",
675 "//content/public/common", 675 "//content/public/common",
676 "//content/test:test_support", 676 "//content/test:test_support",
677 "//net:test_support", 677 "//net:test_support",
678 "//skia", 678 "//skia",
679 "//testing/gtest", 679 "//testing/gtest",
680 "//ui/base", 680 "//ui/base",
681 ] 681 ]
682 } 682 }
OLDNEW
« no previous file with comments | « chrome/browser/extensions/BUILD.gn ('k') | chrome/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698