| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 "api/cast_channel/cast_channel_api.cc", | 82 "api/cast_channel/cast_channel_api.cc", |
| 83 "api/cast_channel/cast_channel_api.h", | 83 "api/cast_channel/cast_channel_api.h", |
| 84 "api/cast_channel/cast_message_util.cc", | 84 "api/cast_channel/cast_message_util.cc", |
| 85 "api/cast_channel/cast_message_util.h", | 85 "api/cast_channel/cast_message_util.h", |
| 86 "api/cast_channel/cast_socket.cc", | 86 "api/cast_channel/cast_socket.cc", |
| 87 "api/cast_channel/cast_socket.h", | 87 "api/cast_channel/cast_socket.h", |
| 88 "api/cast_channel/logger.cc", | 88 "api/cast_channel/logger.cc", |
| 89 "api/cast_channel/logger.h", | 89 "api/cast_channel/logger.h", |
| 90 "api/cast_channel/logger_util.cc", | 90 "api/cast_channel/logger_util.cc", |
| 91 "api/cast_channel/logger_util.h", | 91 "api/cast_channel/logger_util.h", |
| 92 "api/declarative/declarative_api.cc", |
| 93 "api/declarative/declarative_api.h", |
| 94 "api/declarative/declarative_rule.h", |
| 95 "api/declarative/deduping_factory.h", |
| 96 "api/declarative/rules_cache_delegate.cc", |
| 97 "api/declarative/rules_cache_delegate.h", |
| 98 "api/declarative/rules_registry.cc", |
| 99 "api/declarative/rules_registry.h", |
| 100 "api/declarative/test_rules_registry.cc", |
| 101 "api/declarative/test_rules_registry.h", |
| 92 "api/declarative_webrequest/request_stage.cc", | 102 "api/declarative_webrequest/request_stage.cc", |
| 93 "api/declarative_webrequest/request_stage.h", | 103 "api/declarative_webrequest/request_stage.h", |
| 94 "api/declarative_webrequest/webrequest_constants.cc", | 104 "api/declarative_webrequest/webrequest_constants.cc", |
| 95 "api/declarative_webrequest/webrequest_constants.h", | 105 "api/declarative_webrequest/webrequest_constants.h", |
| 96 "api/dns/dns_api.cc", | 106 "api/dns/dns_api.cc", |
| 97 "api/dns/dns_api.h", | 107 "api/dns/dns_api.h", |
| 98 "api/dns/host_resolver_wrapper.cc", | 108 "api/dns/host_resolver_wrapper.cc", |
| 99 "api/dns/host_resolver_wrapper.h", | 109 "api/dns/host_resolver_wrapper.h", |
| 100 "api/execute_code_function.cc", | 110 "api/execute_code_function.cc", |
| 101 "api/execute_code_function.h", | 111 "api/execute_code_function.h", |
| (...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 409 ] | 419 ] |
| 410 } | 420 } |
| 411 } | 421 } |
| 412 | 422 |
| 413 if (is_win) { | 423 if (is_win) { |
| 414 cflags = [ | 424 cflags = [ |
| 415 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 425 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 416 ] | 426 ] |
| 417 } | 427 } |
| 418 } | 428 } |
| OLD | NEW |