| 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 "api/runtime/runtime_api.cc", | 145 "api/runtime/runtime_api.cc", |
| 146 "api/runtime/runtime_api.h", | 146 "api/runtime/runtime_api.h", |
| 147 "api/runtime/runtime_api_delegate.cc", | 147 "api/runtime/runtime_api_delegate.cc", |
| 148 "api/runtime/runtime_api_delegate.h", | 148 "api/runtime/runtime_api_delegate.h", |
| 149 "api/serial/serial_api.cc", | 149 "api/serial/serial_api.cc", |
| 150 "api/serial/serial_api.h", | 150 "api/serial/serial_api.h", |
| 151 "api/serial/serial_connection.cc", | 151 "api/serial/serial_connection.cc", |
| 152 "api/serial/serial_connection.h", | 152 "api/serial/serial_connection.h", |
| 153 "api/serial/serial_event_dispatcher.cc", | 153 "api/serial/serial_event_dispatcher.cc", |
| 154 "api/serial/serial_event_dispatcher.h", | 154 "api/serial/serial_event_dispatcher.h", |
| 155 "api/shell_private/shell_private_api.cc", |
| 156 "api/shell_private/shell_private_api.h", |
| 155 "api/socket/socket.cc", | 157 "api/socket/socket.cc", |
| 156 "api/socket/socket.h", | 158 "api/socket/socket.h", |
| 157 "api/socket/socket_api.cc", | 159 "api/socket/socket_api.cc", |
| 158 "api/socket/socket_api.h", | 160 "api/socket/socket_api.h", |
| 159 "api/socket/tcp_socket.cc", | 161 "api/socket/tcp_socket.cc", |
| 160 "api/socket/tcp_socket.h", | 162 "api/socket/tcp_socket.h", |
| 161 "api/socket/tls_socket.cc", | 163 "api/socket/tls_socket.cc", |
| 162 "api/socket/tls_socket.h", | 164 "api/socket/tls_socket.h", |
| 163 "api/socket/udp_socket.cc", | 165 "api/socket/udp_socket.cc", |
| 164 "api/socket/udp_socket.h", | 166 "api/socket/udp_socket.h", |
| (...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 471 ] | 473 ] |
| 472 } | 474 } |
| 473 } | 475 } |
| 474 | 476 |
| 475 if (is_win) { | 477 if (is_win) { |
| 476 cflags = [ | 478 cflags = [ |
| 477 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 479 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 478 ] | 480 ] |
| 479 } | 481 } |
| 480 } | 482 } |
| OLD | NEW |