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

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

Issue 2127403002: Make browsing_data component a layered component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed output_name from components/browsing_data/content/BUILD.gn Created 4 years, 5 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
« no previous file with comments | « components/components.gyp ('k') | extensions/browser/guest_view/web_view/web_view_guest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/features.gni") 5 import("//build/config/features.gni")
6 import("//extensions/extensions.gni") 6 import("//extensions/extensions.gni")
7 7
8 # GYP version: extensions/extensions.gyp:extensions_browser 8 # GYP version: extensions/extensions.gyp:extensions_browser
9 source_set("browser") { 9 source_set("browser") {
10 sources = [] 10 sources = []
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 # Includes all API implementations and the ExtensionsApiClient 46 # Includes all API implementations and the ExtensionsApiClient
47 # interface. Moving an API from src/chrome to src/extensions implies 47 # interface. Moving an API from src/chrome to src/extensions implies
48 # it can be cleanly disabled with enable_extensions=false. 48 # it can be cleanly disabled with enable_extensions=false.
49 # TODO: Eventually the entire extensions module should not be built 49 # TODO: Eventually the entire extensions module should not be built
50 # when enable_extensions=false. 50 # when enable_extensions=false.
51 sources = rebase_path(extensions_gypi_values.extensions_browser_sources, 51 sources = rebase_path(extensions_gypi_values.extensions_browser_sources,
52 ".", 52 ".",
53 "//extensions") 53 "//extensions")
54 54
55 deps += [ 55 deps += [
56 "//components/browsing_data", 56 "//components/browsing_data/content",
57 "//components/onc", 57 "//components/onc",
58 "//components/storage_monitor", 58 "//components/storage_monitor",
59 "//components/update_client", 59 "//components/update_client",
60 "//components/variations", 60 "//components/variations",
61 "//crypto:platform", 61 "//crypto:platform",
62 "//device/bluetooth", 62 "//device/bluetooth",
63 "//device/core", 63 "//device/core",
64 "//device/hid", 64 "//device/hid",
65 "//device/power_save_blocker", 65 "//device/power_save_blocker",
66 "//device/serial", 66 "//device/serial",
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 if (proprietary_codecs && enable_wifi_display) { 108 if (proprietary_codecs && enable_wifi_display) {
109 wifi_display_sources = rebase_path( 109 wifi_display_sources = rebase_path(
110 extensions_gypi_values.extensions_browser_sources_wifi_display, 110 extensions_gypi_values.extensions_browser_sources_wifi_display,
111 ".", 111 ".",
112 "//extensions") 112 "//extensions")
113 sources += wifi_display_sources 113 sources += wifi_display_sources
114 } 114 }
115 } 115 }
116 } 116 }
117 } 117 }
OLDNEW
« no previous file with comments | « components/components.gyp ('k') | extensions/browser/guest_view/web_view/web_view_guest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698