| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 "api/bluetooth_socket/bluetooth_socket_api.cc", | 74 "api/bluetooth_socket/bluetooth_socket_api.cc", |
| 75 "api/bluetooth_socket/bluetooth_socket_api.h", | 75 "api/bluetooth_socket/bluetooth_socket_api.h", |
| 76 "api/bluetooth_socket/bluetooth_socket_event_dispatcher.cc", | 76 "api/bluetooth_socket/bluetooth_socket_event_dispatcher.cc", |
| 77 "api/bluetooth_socket/bluetooth_socket_event_dispatcher.h", | 77 "api/bluetooth_socket/bluetooth_socket_event_dispatcher.h", |
| 78 "api/capture_web_contents_function.cc", | 78 "api/capture_web_contents_function.cc", |
| 79 "api/capture_web_contents_function.h", | 79 "api/capture_web_contents_function.h", |
| 80 "api/cast_channel/cast_auth_util.cc", | 80 "api/cast_channel/cast_auth_util.cc", |
| 81 "api/cast_channel/cast_auth_util.h", | 81 "api/cast_channel/cast_auth_util.h", |
| 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_framer.cc", |
| 85 "api/cast_channel/cast_framer.h", |
| 84 "api/cast_channel/cast_message_util.cc", | 86 "api/cast_channel/cast_message_util.cc", |
| 85 "api/cast_channel/cast_message_util.h", | 87 "api/cast_channel/cast_message_util.h", |
| 86 "api/cast_channel/cast_socket.cc", | 88 "api/cast_channel/cast_socket.cc", |
| 87 "api/cast_channel/cast_socket.h", | 89 "api/cast_channel/cast_socket.h", |
| 88 "api/cast_channel/logger.cc", | 90 "api/cast_channel/logger.cc", |
| 89 "api/cast_channel/logger.h", | 91 "api/cast_channel/logger.h", |
| 90 "api/cast_channel/logger_util.cc", | 92 "api/cast_channel/logger_util.cc", |
| 91 "api/cast_channel/logger_util.h", | 93 "api/cast_channel/logger_util.h", |
| 92 "api/declarative/declarative_api.cc", | 94 "api/declarative/declarative_api.cc", |
| 93 "api/declarative/declarative_api.h", | 95 "api/declarative/declarative_api.h", |
| (...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 419 ] | 421 ] |
| 420 } | 422 } |
| 421 } | 423 } |
| 422 | 424 |
| 423 if (is_win) { | 425 if (is_win) { |
| 424 cflags = [ | 426 cflags = [ |
| 425 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 427 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 426 ] | 428 ] |
| 427 } | 429 } |
| 428 } | 430 } |
| OLD | NEW |