| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 "api/bluetooth_low_energy/bluetooth_low_energy_notify_session.cc", | 66 "api/bluetooth_low_energy/bluetooth_low_energy_notify_session.cc", |
| 67 "api/bluetooth_low_energy/bluetooth_low_energy_notify_session.h", | 67 "api/bluetooth_low_energy/bluetooth_low_energy_notify_session.h", |
| 68 "api/bluetooth_low_energy/utils.cc", | 68 "api/bluetooth_low_energy/utils.cc", |
| 69 "api/bluetooth_low_energy/utils.h", | 69 "api/bluetooth_low_energy/utils.h", |
| 70 "api/bluetooth_socket/bluetooth_api_socket.cc", | 70 "api/bluetooth_socket/bluetooth_api_socket.cc", |
| 71 "api/bluetooth_socket/bluetooth_api_socket.h", | 71 "api/bluetooth_socket/bluetooth_api_socket.h", |
| 72 "api/bluetooth_socket/bluetooth_socket_api.cc", | 72 "api/bluetooth_socket/bluetooth_socket_api.cc", |
| 73 "api/bluetooth_socket/bluetooth_socket_api.h", | 73 "api/bluetooth_socket/bluetooth_socket_api.h", |
| 74 "api/bluetooth_socket/bluetooth_socket_event_dispatcher.cc", | 74 "api/bluetooth_socket/bluetooth_socket_event_dispatcher.cc", |
| 75 "api/bluetooth_socket/bluetooth_socket_event_dispatcher.h", | 75 "api/bluetooth_socket/bluetooth_socket_event_dispatcher.h", |
| 76 "api/capture_web_contents_function.cc", |
| 77 "api/capture_web_contents_function.h", |
| 76 "api/cast_channel/cast_auth_util.cc", | 78 "api/cast_channel/cast_auth_util.cc", |
| 77 "api/cast_channel/cast_auth_util.h", | 79 "api/cast_channel/cast_auth_util.h", |
| 78 "api/cast_channel/cast_channel_api.cc", | 80 "api/cast_channel/cast_channel_api.cc", |
| 79 "api/cast_channel/cast_channel_api.h", | 81 "api/cast_channel/cast_channel_api.h", |
| 80 "api/cast_channel/cast_message_util.cc", | 82 "api/cast_channel/cast_message_util.cc", |
| 81 "api/cast_channel/cast_message_util.h", | 83 "api/cast_channel/cast_message_util.h", |
| 82 "api/cast_channel/cast_socket.cc", | 84 "api/cast_channel/cast_socket.cc", |
| 83 "api/cast_channel/cast_socket.h", | 85 "api/cast_channel/cast_socket.h", |
| 84 "api/cast_channel/logger.cc", | 86 "api/cast_channel/logger.cc", |
| 85 "api/cast_channel/logger.h", | 87 "api/cast_channel/logger.h", |
| (...skipping 316 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 |