| 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 "api/runtime/runtime_api.cc", | 150 "api/runtime/runtime_api.cc", |
| 151 "api/runtime/runtime_api.h", | 151 "api/runtime/runtime_api.h", |
| 152 "api/runtime/runtime_api_delegate.cc", | 152 "api/runtime/runtime_api_delegate.cc", |
| 153 "api/runtime/runtime_api_delegate.h", | 153 "api/runtime/runtime_api_delegate.h", |
| 154 "api/serial/serial_api.cc", | 154 "api/serial/serial_api.cc", |
| 155 "api/serial/serial_api.h", | 155 "api/serial/serial_api.h", |
| 156 "api/serial/serial_connection.cc", | 156 "api/serial/serial_connection.cc", |
| 157 "api/serial/serial_connection.h", | 157 "api/serial/serial_connection.h", |
| 158 "api/serial/serial_event_dispatcher.cc", | 158 "api/serial/serial_event_dispatcher.cc", |
| 159 "api/serial/serial_event_dispatcher.h", | 159 "api/serial/serial_event_dispatcher.h", |
| 160 "api/shell_private/shell_private_api.cc", | |
| 161 "api/shell_private/shell_private_api.h", | |
| 162 "api/socket/socket.cc", | 160 "api/socket/socket.cc", |
| 163 "api/socket/socket.h", | 161 "api/socket/socket.h", |
| 164 "api/socket/socket_api.cc", | 162 "api/socket/socket_api.cc", |
| 165 "api/socket/socket_api.h", | 163 "api/socket/socket_api.h", |
| 166 "api/socket/tcp_socket.cc", | 164 "api/socket/tcp_socket.cc", |
| 167 "api/socket/tcp_socket.h", | 165 "api/socket/tcp_socket.h", |
| 168 "api/socket/tls_socket.cc", | 166 "api/socket/tls_socket.cc", |
| 169 "api/socket/tls_socket.h", | 167 "api/socket/tls_socket.h", |
| 170 "api/socket/udp_socket.cc", | 168 "api/socket/udp_socket.cc", |
| 171 "api/socket/udp_socket.h", | 169 "api/socket/udp_socket.h", |
| (...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 485 ] | 483 ] |
| 486 } | 484 } |
| 487 } | 485 } |
| 488 | 486 |
| 489 if (is_win) { | 487 if (is_win) { |
| 490 cflags = [ | 488 cflags = [ |
| 491 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 489 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 492 ] | 490 ] |
| 493 } | 491 } |
| 494 } | 492 } |
| OLD | NEW |