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") | |
6 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
7 import("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
8 | 7 |
9 # GYP version: extensions/extensions.gyp:extensions_common_constants | 8 # GYP version: extensions/extensions.gyp:extensions_common_constants |
10 source_set("common_constants") { | 9 source_set("common_constants") { |
11 sources = [ | 10 sources = [ |
12 "constants.cc", | 11 "constants.cc", |
13 "constants.h", | 12 "constants.h", |
14 ] | 13 ] |
15 | 14 |
(...skipping 19 matching lines...) Expand all Loading... |
35 "api/bluetooth/bluetooth_manifest_handler.cc", | 34 "api/bluetooth/bluetooth_manifest_handler.cc", |
36 "api/bluetooth/bluetooth_manifest_handler.h", | 35 "api/bluetooth/bluetooth_manifest_handler.h", |
37 "api/bluetooth/bluetooth_manifest_permission.cc", | 36 "api/bluetooth/bluetooth_manifest_permission.cc", |
38 "api/bluetooth/bluetooth_manifest_permission.h", | 37 "api/bluetooth/bluetooth_manifest_permission.h", |
39 "api/sockets/sockets_manifest_data.cc", | 38 "api/sockets/sockets_manifest_data.cc", |
40 "api/sockets/sockets_manifest_data.h", | 39 "api/sockets/sockets_manifest_data.h", |
41 "api/sockets/sockets_manifest_handler.cc", | 40 "api/sockets/sockets_manifest_handler.cc", |
42 "api/sockets/sockets_manifest_handler.h", | 41 "api/sockets/sockets_manifest_handler.h", |
43 "api/sockets/sockets_manifest_permission.cc", | 42 "api/sockets/sockets_manifest_permission.cc", |
44 "api/sockets/sockets_manifest_permission.h", | 43 "api/sockets/sockets_manifest_permission.h", |
45 "cast/cast_cert_validator.cc", | |
46 "cast/cast_cert_validator.h", | |
47 "common_manifest_handlers.cc", | 44 "common_manifest_handlers.cc", |
48 "common_manifest_handlers.h", | 45 "common_manifest_handlers.h", |
49 "csp_validator.cc", | 46 "csp_validator.cc", |
50 "csp_validator.h", | 47 "csp_validator.h", |
51 "dom_action_types.h", | 48 "dom_action_types.h", |
52 "draggable_region.cc", | 49 "draggable_region.cc", |
53 "draggable_region.h", | 50 "draggable_region.h", |
54 "error_utils.cc", | 51 "error_utils.cc", |
55 "error_utils.h", | 52 "error_utils.h", |
56 "event_filter.cc", | 53 "event_filter.cc", |
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
245 "//net", | 242 "//net", |
246 "//third_party/icu", | 243 "//third_party/icu", |
247 "//third_party/libxml", | 244 "//third_party/libxml", |
248 "//third_party/re2", | 245 "//third_party/re2", |
249 "//ui/base", | 246 "//ui/base", |
250 "//ui/gfx/geometry", | 247 "//ui/gfx/geometry", |
251 "//ui/gfx/ipc", | 248 "//ui/gfx/ipc", |
252 "//url", | 249 "//url", |
253 ] | 250 ] |
254 | 251 |
255 if (use_openssl) { | |
256 sources += [ "cast/cast_cert_validator_openssl.cc" ] | |
257 } else { | |
258 sources += [ "cast/cast_cert_validator_nss.cc" ] | |
259 } | |
260 | |
261 if (enable_nacl) { | 252 if (enable_nacl) { |
262 sources += [ | 253 sources += [ |
263 "manifest_handlers/nacl_modules_handler.cc", | 254 "manifest_handlers/nacl_modules_handler.cc", |
264 "manifest_handlers/nacl_modules_handler.h", | 255 "manifest_handlers/nacl_modules_handler.h", |
265 ] | 256 ] |
266 } | 257 } |
267 | 258 |
268 if (is_win) { | 259 if (is_win) { |
269 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int
truncations. | 260 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int
truncations. |
270 } | 261 } |
271 } | 262 } |
272 } # enable_extensions | 263 } # enable_extensions |
OLD | NEW |