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/crypto.gni") | 5 import("//build/config/crypto.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.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 = [ |
11 ] | 11 ] |
12 | 12 |
13 deps = [ | 13 deps = [ |
14 "//components/keyed_service/content", | 14 "//components/keyed_service/content", |
15 "//components/keyed_service/core", | 15 "//components/keyed_service/core", |
16 "//components/pref_registry", | 16 "//components/pref_registry", |
| 17 "//components/web_modal", |
17 "//content/public/browser", | 18 "//content/public/browser", |
18 "//extensions/common", | 19 "//extensions/common", |
19 "//extensions/common/api", | 20 "//extensions/common/api", |
20 "//extensions/strings", | 21 "//extensions/strings", |
21 "//skia", | 22 "//skia", |
22 "//third_party/leveldatabase", | 23 "//third_party/leveldatabase", |
23 ] | 24 ] |
24 | 25 |
25 if (enable_extensions) { | 26 if (enable_extensions) { |
26 # Includes all API implementations and the ExtensionsApiClient | 27 # Includes all API implementations and the ExtensionsApiClient |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 "api/storage/weak_unlimited_settings_storage.cc", | 119 "api/storage/weak_unlimited_settings_storage.cc", |
119 "api/storage/weak_unlimited_settings_storage.h", | 120 "api/storage/weak_unlimited_settings_storage.h", |
120 "api/test/test_api.cc", | 121 "api/test/test_api.cc", |
121 "api/test/test_api.h", | 122 "api/test/test_api.h", |
122 "api/usb/usb_api.cc", | 123 "api/usb/usb_api.cc", |
123 "api/usb/usb_api.h", | 124 "api/usb/usb_api.h", |
124 "api/usb/usb_device_resource.cc", | 125 "api/usb/usb_device_resource.cc", |
125 "api/usb/usb_device_resource.h", | 126 "api/usb/usb_device_resource.h", |
126 "api_activity_monitor.h", | 127 "api_activity_monitor.h", |
127 "app_sorting.h", | 128 "app_sorting.h", |
| 129 "app_window/native_app_window.h", |
128 "app_window/size_constraints.cc", | 130 "app_window/size_constraints.cc", |
129 "app_window/size_constraints.h", | 131 "app_window/size_constraints.h", |
130 "blacklist_state.h", | 132 "blacklist_state.h", |
131 "blob_holder.cc", | 133 "blob_holder.cc", |
132 "blob_holder.h", | 134 "blob_holder.h", |
133 "browser_context_keyed_api_factory.h", | 135 "browser_context_keyed_api_factory.h", |
134 "browser_context_keyed_service_factories.cc", | 136 "browser_context_keyed_service_factories.cc", |
135 "browser_context_keyed_service_factories.h", | 137 "browser_context_keyed_service_factories.h", |
136 "component_extension_resource_manager.h", | 138 "component_extension_resource_manager.h", |
137 "computed_hashes.cc", | 139 "computed_hashes.cc", |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
283 ] | 285 ] |
284 } | 286 } |
285 } | 287 } |
286 | 288 |
287 if (is_win) { | 289 if (is_win) { |
288 cflags = [ | 290 cflags = [ |
289 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 291 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
290 ] | 292 ] |
291 } | 293 } |
292 } | 294 } |
OLD | NEW |