OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |