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

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: use USB_DEVICE_NAME instead of USB_DEVICE_PRODUCT_NAME in generated_resources.grd 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 642 matching lines...) Expand 10 before | Expand all | Expand 10 after
653 # Mobile. 653 # Mobile.
654 sources += 654 sources +=
655 rebase_path(gypi_values.chrome_browser_mobile_sources, ".", "//chrome") 655 rebase_path(gypi_values.chrome_browser_mobile_sources, ".", "//chrome")
656 } else { 656 } else {
657 # Non-mobile. 657 # Non-mobile.
658 sources += rebase_path(gypi_values.chrome_browser_non_mobile_sources, 658 sources += rebase_path(gypi_values.chrome_browser_non_mobile_sources,
659 ".", 659 ".",
660 "//chrome") 660 "//chrome")
661 deps += [ 661 deps += [
662 "//components/feedback", 662 "//components/feedback",
663 "//components/webusb",
663 "//device/core", 664 "//device/core",
664 "//device/devices_app/public/cpp", 665 "//device/devices_app/public/cpp",
665 "//device/devices_app/public/cpp:factory", 666 "//device/devices_app/public/cpp:factory",
666 "//device/usb", 667 "//device/usb",
667 ] 668 ]
668 } 669 }
669 670
670 if (!is_official_build) { 671 if (!is_official_build) {
671 sources += [ 672 sources += [
672 "search/local_files_ntp_source.cc", 673 "search/local_files_ntp_source.cc",
(...skipping 571 matching lines...) Expand 10 before | Expand all | Expand 10 after
1244 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") 1245 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome")
1245 deps = [ 1246 deps = [
1246 "//components/google/core/browser", 1247 "//components/google/core/browser",
1247 "//components/omnibox/browser", 1248 "//components/omnibox/browser",
1248 "//components/rlz", 1249 "//components/rlz",
1249 "//components/search_engines", 1250 "//components/search_engines",
1250 "//rlz:rlz_lib", 1251 "//rlz:rlz_lib",
1251 ] 1252 ]
1252 } 1253 }
1253 } 1254 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698