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

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

Issue 606953002: Move components/native_app_window to extensions/components/native_app_window (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: extensions/components version, with fixed apps dep Created 6 years, 2 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
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( 9 gypi_values = exec_script(
10 "//build/gypi_to_gn.py", 10 "//build/gypi_to_gn.py",
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 ".", "//chrome") 198 ".", "//chrome")
199 if (!is_chromeos) { 199 if (!is_chromeos) {
200 sources += rebase_path( 200 sources += rebase_path(
201 gypi_values.chrome_browser_ui_views_non_chromeos_sources, 201 gypi_values.chrome_browser_ui_views_non_chromeos_sources,
202 ".", "//chrome") 202 ".", "//chrome")
203 } 203 }
204 if (!is_mac) { 204 if (!is_mac) {
205 sources += rebase_path( 205 sources += rebase_path(
206 gypi_values.chrome_browser_ui_views_non_mac_sources, 206 gypi_values.chrome_browser_ui_views_non_mac_sources,
207 ".", "//chrome") 207 ".", "//chrome")
208 deps += [ "//extensions/components/native_app_window" ]
tapted 2014/09/30 04:02:46 .. pretty sure this is the where the native_app_wi
208 } 209 }
209 if (use_ash) { 210 if (use_ash) {
210 sources += rebase_path(gypi_values.chrome_browser_ui_ash_views_sources, 211 sources += rebase_path(gypi_values.chrome_browser_ui_ash_views_sources,
211 ".", "//chrome") 212 ".", "//chrome")
212 } 213 }
213 } 214 }
214 if (use_aura && !use_ozone && is_desktop_linux) { 215 if (use_aura && !use_ozone && is_desktop_linux) {
215 deps += [ 216 deps += [
216 "//build/config/linux:gio", 217 "//build/config/linux:gio",
217 # gtk2 is the only component that can interact with gtk2 in our new 218 # gtk2 is the only component that can interact with gtk2 in our new
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
452 "//chrome/browser", 453 "//chrome/browser",
453 "//content/public/browser", 454 "//content/public/browser",
454 "//content/public/common", 455 "//content/public/common",
455 "//content/test:test_support", 456 "//content/test:test_support",
456 "//net:test_support", 457 "//net:test_support",
457 "//skia", 458 "//skia",
458 "//testing/gtest", 459 "//testing/gtest",
459 "//ui/base", 460 "//ui/base",
460 ] 461 ]
461 } 462 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698