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

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

Issue 1056793002: Move clear cache code from chrome/ (ChromeWVGDelegate) to extensions/ (WVGuest) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@move-spbdr
Patch Set: fix test on windows Created 5 years, 7 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("//extensions/extensions.gni") 7 import("//extensions/extensions.gni")
8 8
9 # GYP version: extensions/extensions.gyp:extensions_browser 9 # GYP version: extensions/extensions.gyp:extensions_browser
10 source_set("browser") { 10 source_set("browser") {
(...skipping 26 matching lines...) Expand all
37 # Includes all API implementations and the ExtensionsApiClient 37 # Includes all API implementations and the ExtensionsApiClient
38 # interface. Moving an API from src/chrome to src/extensions implies 38 # interface. Moving an API from src/chrome to src/extensions implies
39 # it can be cleanly disabled with enable_extensions=false. 39 # it can be cleanly disabled with enable_extensions=false.
40 # TODO: Eventually the entire extensions module should not be built 40 # TODO: Eventually the entire extensions module should not be built
41 # when enable_extensions=false. 41 # when enable_extensions=false.
42 sources = rebase_path(extensions_gypi_values.extensions_browser_sources, 42 sources = rebase_path(extensions_gypi_values.extensions_browser_sources,
43 ".", 43 ".",
44 "//extensions") 44 "//extensions")
45 45
46 deps += [ 46 deps += [
47 "//components/browsing_data",
47 "//components/onc", 48 "//components/onc",
48 "//components/storage_monitor", 49 "//components/storage_monitor",
49 "//components/update_client", 50 "//components/update_client",
50 "//components/variations", 51 "//components/variations",
51 "//crypto:platform", 52 "//crypto:platform",
52 "//device/bluetooth", 53 "//device/bluetooth",
53 "//device/core", 54 "//device/core",
54 "//device/hid", 55 "//device/hid",
55 "//device/serial", 56 "//device/serial",
56 "//device/usb", 57 "//device/usb",
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 win_or_mac_sources = rebase_path( 90 win_or_mac_sources = rebase_path(
90 extensions_gypi_values.extensions_browser_sources_win_or_mac, 91 extensions_gypi_values.extensions_browser_sources_win_or_mac,
91 ".", 92 ".",
92 "//extensions") 93 "//extensions")
93 sources += win_or_mac_sources 94 sources += win_or_mac_sources
94 } 95 }
95 } 96 }
96 } 97 }
97 } 98 }
98 } 99 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698