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

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

Issue 1289423002: Add webusb notification UI code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: changed variable name Created 5 years, 3 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 637 matching lines...) Expand 10 before | Expand all | Expand 10 after
648 # Mobile. 648 # Mobile.
649 sources += 649 sources +=
650 rebase_path(gypi_values.chrome_browser_mobile_sources, ".", "//chrome") 650 rebase_path(gypi_values.chrome_browser_mobile_sources, ".", "//chrome")
651 } else { 651 } else {
652 # Non-mobile. 652 # Non-mobile.
653 sources += rebase_path(gypi_values.chrome_browser_non_mobile_sources, 653 sources += rebase_path(gypi_values.chrome_browser_non_mobile_sources,
654 ".", 654 ".",
655 "//chrome") 655 "//chrome")
656 deps += [ 656 deps += [
657 "//components/feedback", 657 "//components/feedback",
658 "//components/webusb",
658 "//device/core", 659 "//device/core",
659 "//device/devices_app/public/cpp", 660 "//device/devices_app/public/cpp",
660 "//device/devices_app/public/cpp:factory", 661 "//device/devices_app/public/cpp:factory",
661 "//device/usb", 662 "//device/usb",
662 ] 663 ]
663 } 664 }
664 665
665 if (!is_official_build) { 666 if (!is_official_build) {
666 sources += [ 667 sources += [
667 "search/local_files_ntp_source.cc", 668 "search/local_files_ntp_source.cc",
(...skipping 571 matching lines...) Expand 10 before | Expand all | Expand 10 after
1239 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") 1240 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome")
1240 deps = [ 1241 deps = [
1241 "//components/google/core/browser", 1242 "//components/google/core/browser",
1242 "//components/omnibox/browser", 1243 "//components/omnibox/browser",
1243 "//components/rlz", 1244 "//components/rlz",
1244 "//components/search_engines", 1245 "//components/search_engines",
1245 "//rlz:rlz_lib", 1246 "//rlz:rlz_lib",
1246 ] 1247 ]
1247 } 1248 }
1248 } 1249 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698