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

Side by Side Diff: chrome/browser/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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/crypto.gni") 6 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//third_party/protobuf/proto_library.gni") 9 import("//third_party/protobuf/proto_library.gni")
10 10
(...skipping 548 matching lines...) Expand 10 before | Expand all | Expand 10 after
559 "//chrome") 559 "//chrome")
560 defines += [ "USE_LIBSECRET" ] 560 defines += [ "USE_LIBSECRET" ]
561 } 561 }
562 if (use_aura) { 562 if (use_aura) {
563 sources += 563 sources +=
564 rebase_path(gypi_values.chrome_browser_aura_sources, ".", "//chrome") 564 rebase_path(gypi_values.chrome_browser_aura_sources, ".", "//chrome")
565 deps += [ 565 deps += [
566 "//ui/aura", 566 "//ui/aura",
567 "//ui/compositor", 567 "//ui/compositor",
568 "//ui/keyboard", 568 "//ui/keyboard",
569 "//ui/keyboard:keyboard_with_content",
569 ] 570 ]
570 } 571 }
571 if (ui_compositor_image_transport) { 572 if (ui_compositor_image_transport) {
572 deps += [ "//ui/gl" ] 573 deps += [ "//ui/gl" ]
573 } 574 }
574 575
575 if (use_ash) { 576 if (use_ash) {
576 sources += 577 sources +=
577 rebase_path(gypi_values.chrome_browser_ash_sources, ".", "//chrome") 578 rebase_path(gypi_values.chrome_browser_ash_sources, ".", "//chrome")
578 } 579 }
(...skipping 678 matching lines...) Expand 10 before | Expand all | Expand 10 after
1257 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") 1258 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome")
1258 deps = [ 1259 deps = [
1259 "//components/google/core/browser", 1260 "//components/google/core/browser",
1260 "//components/omnibox/browser", 1261 "//components/omnibox/browser",
1261 "//components/rlz", 1262 "//components/rlz",
1262 "//components/search_engines", 1263 "//components/search_engines",
1263 "//rlz:rlz_lib", 1264 "//rlz:rlz_lib",
1264 ] 1265 ]
1265 } 1266 }
1266 } 1267 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698