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

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

Issue 1392713002: Extract content dependency from keyboard code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 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("//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 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 "//chrome") 256 "//chrome")
257 } 257 }
258 if (use_aura) { 258 if (use_aura) {
259 sources += 259 sources +=
260 rebase_path(gypi_values.chrome_browser_ui_aura_sources, ".", "//chrome") 260 rebase_path(gypi_values.chrome_browser_ui_aura_sources, ".", "//chrome")
261 deps += [ 261 deps += [
262 # aura uses some of ash resources. 262 # aura uses some of ash resources.
263 "//ash/resources", 263 "//ash/resources",
264 "//ui/aura", 264 "//ui/aura",
265 "//ui/keyboard", 265 "//ui/keyboard",
266 "//ui/keyboard:keyboard_with_content",
266 "//ui/keyboard:resources", 267 "//ui/keyboard:resources",
267 "//ui/wm", 268 "//ui/wm",
268 ] 269 ]
269 if (!is_chromeos) { 270 if (!is_chromeos) {
270 sources += rebase_path(gypi_values.chrome_browser_ui_aura_non_chromeos, 271 sources += rebase_path(gypi_values.chrome_browser_ui_aura_non_chromeos,
271 ".", 272 ".",
272 "//chrome") 273 "//chrome")
273 } 274 }
274 } 275 }
275 if (ui_compositor_image_transport) { 276 if (ui_compositor_image_transport) {
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
549 "//chrome/browser", 550 "//chrome/browser",
550 "//content/public/browser", 551 "//content/public/browser",
551 "//content/public/common", 552 "//content/public/common",
552 "//content/test:test_support", 553 "//content/test:test_support",
553 "//net:test_support", 554 "//net:test_support",
554 "//skia", 555 "//skia",
555 "//testing/gtest", 556 "//testing/gtest",
556 "//ui/base", 557 "//ui/base",
557 ] 558 ]
558 } 559 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698