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

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

Issue 658383003: Componentize Constrained Window Views (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: rebase Created 6 years, 1 month 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 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 ".", "//chrome") 214 ".", "//chrome")
215 if (!is_chromeos) { 215 if (!is_chromeos) {
216 sources += rebase_path( 216 sources += rebase_path(
217 gypi_values.chrome_browser_ui_views_non_chromeos_sources, 217 gypi_values.chrome_browser_ui_views_non_chromeos_sources,
218 ".", "//chrome") 218 ".", "//chrome")
219 } 219 }
220 if (!is_mac) { 220 if (!is_mac) {
221 sources += rebase_path( 221 sources += rebase_path(
222 gypi_values.chrome_browser_ui_views_non_mac_sources, 222 gypi_values.chrome_browser_ui_views_non_mac_sources,
223 ".", "//chrome") 223 ".", "//chrome")
224 deps += [ "//extensions/components/native_app_window" ] 224 deps += [
225 "//components/constrained_window",
226 "//extensions/components/native_app_window",
227 ]
225 } 228 }
226 if (use_ash) { 229 if (use_ash) {
227 sources += rebase_path(gypi_values.chrome_browser_ui_ash_views_sources, 230 sources += rebase_path(gypi_values.chrome_browser_ui_ash_views_sources,
228 ".", "//chrome") 231 ".", "//chrome")
229 } 232 }
230 } 233 }
231 if (use_aura && !use_ozone && is_desktop_linux) { 234 if (use_aura && !use_ozone && is_desktop_linux) {
232 deps += [ 235 deps += [
233 "//build/config/linux:gio", 236 "//build/config/linux:gio",
234 # gtk2 is the only component that can interact with gtk2 in our new 237 # gtk2 is the only component that can interact with gtk2 in our new
235 # world. 238 # world.
236 "//chrome/browser/ui/libgtk2ui", 239 "//chrome/browser/ui/libgtk2ui",
237 ] 240 ]
238 } 241 }
239 if (is_win || is_mac || is_desktop_linux) { 242 if (is_win || is_mac || is_desktop_linux) {
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
474 "//chrome/browser", 477 "//chrome/browser",
475 "//content/public/browser", 478 "//content/public/browser",
476 "//content/public/common", 479 "//content/public/common",
477 "//content/test:test_support", 480 "//content/test:test_support",
478 "//net:test_support", 481 "//net:test_support",
479 "//skia", 482 "//skia",
480 "//testing/gtest", 483 "//testing/gtest",
481 "//ui/base", 484 "//ui/base",
482 ] 485 ]
483 } 486 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/views/DEPS » ('j') | chrome/test/base/browser_with_test_window_test.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698