| 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/cast_channel/logger_util.cc", | 96 "api/cast_channel/logger_util.cc", |
| 97 "api/cast_channel/logger_util.h", | 97 "api/cast_channel/logger_util.h", |
| 98 "api/declarative/declarative_api.cc", | 98 "api/declarative/declarative_api.cc", |
| 99 "api/declarative/declarative_api.h", | 99 "api/declarative/declarative_api.h", |
| 100 "api/declarative/declarative_rule.h", | 100 "api/declarative/declarative_rule.h", |
| 101 "api/declarative/deduping_factory.h", | 101 "api/declarative/deduping_factory.h", |
| 102 "api/declarative/rules_cache_delegate.cc", | 102 "api/declarative/rules_cache_delegate.cc", |
| 103 "api/declarative/rules_cache_delegate.h", | 103 "api/declarative/rules_cache_delegate.h", |
| 104 "api/declarative/rules_registry.cc", | 104 "api/declarative/rules_registry.cc", |
| 105 "api/declarative/rules_registry.h", | 105 "api/declarative/rules_registry.h", |
| 106 "api/declarative/rules_registry_service.cc", |
| 107 "api/declarative/rules_registry_service.h", |
| 106 "api/declarative/test_rules_registry.cc", | 108 "api/declarative/test_rules_registry.cc", |
| 107 "api/declarative/test_rules_registry.h", | 109 "api/declarative/test_rules_registry.h", |
| 110 "api/declarative_content/content_rules_registry.h", |
| 108 "api/declarative_webrequest/request_stage.cc", | 111 "api/declarative_webrequest/request_stage.cc", |
| 109 "api/declarative_webrequest/request_stage.h", | 112 "api/declarative_webrequest/request_stage.h", |
| 110 "api/declarative_webrequest/webrequest_action.cc", | 113 "api/declarative_webrequest/webrequest_action.cc", |
| 111 "api/declarative_webrequest/webrequest_action.h", | 114 "api/declarative_webrequest/webrequest_action.h", |
| 112 "api/declarative_webrequest/webrequest_condition_attribute.cc", | 115 "api/declarative_webrequest/webrequest_condition_attribute.cc", |
| 113 "api/declarative_webrequest/webrequest_condition_attribute.h", | 116 "api/declarative_webrequest/webrequest_condition_attribute.h", |
| 114 "api/declarative_webrequest/webrequest_condition.cc", | 117 "api/declarative_webrequest/webrequest_condition.cc", |
| 115 "api/declarative_webrequest/webrequest_condition.h", | 118 "api/declarative_webrequest/webrequest_condition.h", |
| 116 "api/declarative_webrequest/webrequest_constants.cc", | 119 "api/declarative_webrequest/webrequest_constants.cc", |
| 117 "api/declarative_webrequest/webrequest_constants.h", | 120 "api/declarative_webrequest/webrequest_constants.h", |
| (...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 462 ] | 465 ] |
| 463 } | 466 } |
| 464 } | 467 } |
| 465 | 468 |
| 466 if (is_win) { | 469 if (is_win) { |
| 467 cflags = [ | 470 cflags = [ |
| 468 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 471 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 469 ] | 472 ] |
| 470 } | 473 } |
| 471 } | 474 } |
| OLD | NEW |