| 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 "api/declarative_webrequest/webrequest_condition_attribute.cc", | 121 "api/declarative_webrequest/webrequest_condition_attribute.cc", |
| 122 "api/declarative_webrequest/webrequest_condition_attribute.h", | 122 "api/declarative_webrequest/webrequest_condition_attribute.h", |
| 123 "api/declarative_webrequest/webrequest_condition.cc", | 123 "api/declarative_webrequest/webrequest_condition.cc", |
| 124 "api/declarative_webrequest/webrequest_condition.h", | 124 "api/declarative_webrequest/webrequest_condition.h", |
| 125 "api/declarative_webrequest/webrequest_constants.cc", | 125 "api/declarative_webrequest/webrequest_constants.cc", |
| 126 "api/declarative_webrequest/webrequest_constants.h", | 126 "api/declarative_webrequest/webrequest_constants.h", |
| 127 "api/declarative_webrequest/webrequest_rules_registry.cc", | 127 "api/declarative_webrequest/webrequest_rules_registry.cc", |
| 128 "api/declarative_webrequest/webrequest_rules_registry.h", | 128 "api/declarative_webrequest/webrequest_rules_registry.h", |
| 129 "api/device_permissions_manager.cc", | 129 "api/device_permissions_manager.cc", |
| 130 "api/device_permissions_manager.h", | 130 "api/device_permissions_manager.h", |
| 131 "api/device_permissions_prompt.cc", |
| 132 "api/device_permissions_prompt.h", |
| 131 "api/dns/dns_api.cc", | 133 "api/dns/dns_api.cc", |
| 132 "api/dns/dns_api.h", | 134 "api/dns/dns_api.h", |
| 133 "api/dns/host_resolver_wrapper.cc", | 135 "api/dns/host_resolver_wrapper.cc", |
| 134 "api/dns/host_resolver_wrapper.h", | 136 "api/dns/host_resolver_wrapper.h", |
| 135 "api/execute_code_function.cc", | 137 "api/execute_code_function.cc", |
| 136 "api/execute_code_function.h", | 138 "api/execute_code_function.h", |
| 137 "api/extensions_api_client.cc", | 139 "api/extensions_api_client.cc", |
| 138 "api/extensions_api_client.h", | 140 "api/extensions_api_client.h", |
| 139 "api/hid/hid_api.cc", | 141 "api/hid/hid_api.cc", |
| 140 "api/hid/hid_api.h", | 142 "api/hid/hid_api.h", |
| (...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 485 ] | 487 ] |
| 486 } | 488 } |
| 487 } | 489 } |
| 488 | 490 |
| 489 if (is_win) { | 491 if (is_win) { |
| 490 cflags = [ | 492 cflags = [ |
| 491 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 493 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 492 ] | 494 ] |
| 493 } | 495 } |
| 494 } | 496 } |
| OLD | NEW |