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 = [ |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 "api/declarative/declarative_rule.h", | 96 "api/declarative/declarative_rule.h", |
97 "api/declarative/deduping_factory.h", | 97 "api/declarative/deduping_factory.h", |
98 "api/declarative/rules_cache_delegate.cc", | 98 "api/declarative/rules_cache_delegate.cc", |
99 "api/declarative/rules_cache_delegate.h", | 99 "api/declarative/rules_cache_delegate.h", |
100 "api/declarative/rules_registry.cc", | 100 "api/declarative/rules_registry.cc", |
101 "api/declarative/rules_registry.h", | 101 "api/declarative/rules_registry.h", |
102 "api/declarative/test_rules_registry.cc", | 102 "api/declarative/test_rules_registry.cc", |
103 "api/declarative/test_rules_registry.h", | 103 "api/declarative/test_rules_registry.h", |
104 "api/declarative_webrequest/request_stage.cc", | 104 "api/declarative_webrequest/request_stage.cc", |
105 "api/declarative_webrequest/request_stage.h", | 105 "api/declarative_webrequest/request_stage.h", |
| 106 "api/declarative_webrequest/webrequest_condition_attribute.cc", |
| 107 "api/declarative_webrequest/webrequest_condition_attribute.h", |
| 108 "api/declarative_webrequest/webrequest_condition.cc", |
| 109 "api/declarative_webrequest/webrequest_condition.h", |
106 "api/declarative_webrequest/webrequest_constants.cc", | 110 "api/declarative_webrequest/webrequest_constants.cc", |
107 "api/declarative_webrequest/webrequest_constants.h", | 111 "api/declarative_webrequest/webrequest_constants.h", |
108 "api/dns/dns_api.cc", | 112 "api/dns/dns_api.cc", |
109 "api/dns/dns_api.h", | 113 "api/dns/dns_api.h", |
110 "api/dns/host_resolver_wrapper.cc", | 114 "api/dns/host_resolver_wrapper.cc", |
111 "api/dns/host_resolver_wrapper.h", | 115 "api/dns/host_resolver_wrapper.h", |
112 "api/execute_code_function.cc", | 116 "api/execute_code_function.cc", |
113 "api/execute_code_function.h", | 117 "api/execute_code_function.h", |
114 "api/extensions_api_client.cc", | 118 "api/extensions_api_client.cc", |
115 "api/extensions_api_client.h", | 119 "api/extensions_api_client.h", |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
199 "api/system_storage/system_storage_api.cc", | 203 "api/system_storage/system_storage_api.cc", |
200 "api/system_storage/system_storage_api.h", | 204 "api/system_storage/system_storage_api.h", |
201 "api/test/test_api.cc", | 205 "api/test/test_api.cc", |
202 "api/test/test_api.h", | 206 "api/test/test_api.h", |
203 "api/usb/usb_api.cc", | 207 "api/usb/usb_api.cc", |
204 "api/usb/usb_api.h", | 208 "api/usb/usb_api.h", |
205 "api/usb/usb_device_resource.cc", | 209 "api/usb/usb_device_resource.cc", |
206 "api/usb/usb_device_resource.h", | 210 "api/usb/usb_device_resource.h", |
207 "api/usb_private/usb_private_api.cc", | 211 "api/usb_private/usb_private_api.cc", |
208 "api/usb_private/usb_private_api.h", | 212 "api/usb_private/usb_private_api.h", |
| 213 "api/web_request/web_request_api_utils.cc", |
| 214 "api/web_request/web_request_api_utils.h", |
209 "api/web_view/web_view_internal_api.cc", | 215 "api/web_view/web_view_internal_api.cc", |
210 "api/web_view/web_view_internal_api.h", | 216 "api/web_view/web_view_internal_api.h", |
211 "api_activity_monitor.h", | 217 "api_activity_monitor.h", |
212 "app_sorting.h", | 218 "app_sorting.h", |
213 "app_window/app_delegate.h", | 219 "app_window/app_delegate.h", |
214 "app_window/app_web_contents_helper.cc", | 220 "app_window/app_web_contents_helper.cc", |
215 "app_window/app_web_contents_helper.h", | 221 "app_window/app_web_contents_helper.h", |
216 "app_window/app_window.cc", | 222 "app_window/app_window.cc", |
217 "app_window/app_window.h", | 223 "app_window/app_window.h", |
218 "app_window/app_window_contents.cc", | 224 "app_window/app_window_contents.cc", |
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
431 ] | 437 ] |
432 } | 438 } |
433 } | 439 } |
434 | 440 |
435 if (is_win) { | 441 if (is_win) { |
436 cflags = [ | 442 cflags = [ |
437 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 443 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
438 ] | 444 ] |
439 } | 445 } |
440 } | 446 } |
OLD | NEW |