| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 "api/cast_channel/cast_channel_api.cc", | 78 "api/cast_channel/cast_channel_api.cc", |
| 79 "api/cast_channel/cast_channel_api.h", | 79 "api/cast_channel/cast_channel_api.h", |
| 80 "api/cast_channel/cast_message_util.cc", | 80 "api/cast_channel/cast_message_util.cc", |
| 81 "api/cast_channel/cast_message_util.h", | 81 "api/cast_channel/cast_message_util.h", |
| 82 "api/cast_channel/cast_socket.cc", | 82 "api/cast_channel/cast_socket.cc", |
| 83 "api/cast_channel/cast_socket.h", | 83 "api/cast_channel/cast_socket.h", |
| 84 "api/cast_channel/logger.cc", | 84 "api/cast_channel/logger.cc", |
| 85 "api/cast_channel/logger.h", | 85 "api/cast_channel/logger.h", |
| 86 "api/cast_channel/logger_util.cc", | 86 "api/cast_channel/logger_util.cc", |
| 87 "api/cast_channel/logger_util.h", | 87 "api/cast_channel/logger_util.h", |
| 88 "api/declarative_webrequest/request_stage.cc", |
| 89 "api/declarative_webrequest/request_stage.h", |
| 88 "api/declarative_webrequest/webrequest_constants.cc", | 90 "api/declarative_webrequest/webrequest_constants.cc", |
| 89 "api/declarative_webrequest/webrequest_constants.h", | 91 "api/declarative_webrequest/webrequest_constants.h", |
| 90 "api/dns/dns_api.cc", | 92 "api/dns/dns_api.cc", |
| 91 "api/dns/dns_api.h", | 93 "api/dns/dns_api.h", |
| 92 "api/dns/host_resolver_wrapper.cc", | 94 "api/dns/host_resolver_wrapper.cc", |
| 93 "api/dns/host_resolver_wrapper.h", | 95 "api/dns/host_resolver_wrapper.h", |
| 94 "api/execute_code_function.cc", | 96 "api/execute_code_function.cc", |
| 95 "api/execute_code_function.h", | 97 "api/execute_code_function.h", |
| 96 "api/extensions_api_client.cc", | 98 "api/extensions_api_client.cc", |
| 97 "api/extensions_api_client.h", | 99 "api/extensions_api_client.h", |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 ] | 404 ] |
| 403 } | 405 } |
| 404 } | 406 } |
| 405 | 407 |
| 406 if (is_win) { | 408 if (is_win) { |
| 407 cflags = [ | 409 cflags = [ |
| 408 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 410 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 409 ] | 411 ] |
| 410 } | 412 } |
| 411 } | 413 } |
| OLD | NEW |