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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 "api/declarative_webrequest/webrequest_action.cc", | 115 "api/declarative_webrequest/webrequest_action.cc", |
116 "api/declarative_webrequest/webrequest_action.h", | 116 "api/declarative_webrequest/webrequest_action.h", |
117 "api/declarative_webrequest/webrequest_condition_attribute.cc", | 117 "api/declarative_webrequest/webrequest_condition_attribute.cc", |
118 "api/declarative_webrequest/webrequest_condition_attribute.h", | 118 "api/declarative_webrequest/webrequest_condition_attribute.h", |
119 "api/declarative_webrequest/webrequest_condition.cc", | 119 "api/declarative_webrequest/webrequest_condition.cc", |
120 "api/declarative_webrequest/webrequest_condition.h", | 120 "api/declarative_webrequest/webrequest_condition.h", |
121 "api/declarative_webrequest/webrequest_constants.cc", | 121 "api/declarative_webrequest/webrequest_constants.cc", |
122 "api/declarative_webrequest/webrequest_constants.h", | 122 "api/declarative_webrequest/webrequest_constants.h", |
123 "api/declarative_webrequest/webrequest_rules_registry.cc", | 123 "api/declarative_webrequest/webrequest_rules_registry.cc", |
124 "api/declarative_webrequest/webrequest_rules_registry.h", | 124 "api/declarative_webrequest/webrequest_rules_registry.h", |
| 125 "api/device_permissions_manager.cc", |
| 126 "api/device_permissions_manager.h", |
125 "api/dns/dns_api.cc", | 127 "api/dns/dns_api.cc", |
126 "api/dns/dns_api.h", | 128 "api/dns/dns_api.h", |
127 "api/dns/host_resolver_wrapper.cc", | 129 "api/dns/host_resolver_wrapper.cc", |
128 "api/dns/host_resolver_wrapper.h", | 130 "api/dns/host_resolver_wrapper.h", |
129 "api/execute_code_function.cc", | 131 "api/execute_code_function.cc", |
130 "api/execute_code_function.h", | 132 "api/execute_code_function.h", |
131 "api/extensions_api_client.cc", | 133 "api/extensions_api_client.cc", |
132 "api/extensions_api_client.h", | 134 "api/extensions_api_client.h", |
133 "api/hid/hid_api.cc", | 135 "api/hid/hid_api.cc", |
134 "api/hid/hid_api.h", | 136 "api/hid/hid_api.h", |
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
467 ] | 469 ] |
468 } | 470 } |
469 } | 471 } |
470 | 472 |
471 if (is_win) { | 473 if (is_win) { |
472 cflags = [ | 474 cflags = [ |
473 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 475 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
474 ] | 476 ] |
475 } | 477 } |
476 } | 478 } |
OLD | NEW |