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/features.gni") | 5 import("//build/config/features.gni") |
6 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 6 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
7 | 7 |
8 # GYP version: extensions/extensions.gyp:extensions_common_constants | 8 # GYP version: extensions/extensions.gyp:extensions_common_constants |
9 source_set("common_constants") { | 9 source_set("common_constants") { |
10 sources = [ | 10 sources = [ |
(...skipping 25 matching lines...) Expand all Loading... |
36 "api/bluetooth/bluetooth_manifest_permission.cc", | 36 "api/bluetooth/bluetooth_manifest_permission.cc", |
37 "api/bluetooth/bluetooth_manifest_permission.h", | 37 "api/bluetooth/bluetooth_manifest_permission.h", |
38 "api/sockets/sockets_manifest_data.cc", | 38 "api/sockets/sockets_manifest_data.cc", |
39 "api/sockets/sockets_manifest_data.h", | 39 "api/sockets/sockets_manifest_data.h", |
40 "api/sockets/sockets_manifest_handler.cc", | 40 "api/sockets/sockets_manifest_handler.cc", |
41 "api/sockets/sockets_manifest_handler.h", | 41 "api/sockets/sockets_manifest_handler.h", |
42 "api/sockets/sockets_manifest_permission.cc", | 42 "api/sockets/sockets_manifest_permission.cc", |
43 "api/sockets/sockets_manifest_permission.h", | 43 "api/sockets/sockets_manifest_permission.h", |
44 "common_manifest_handlers.cc", | 44 "common_manifest_handlers.cc", |
45 "common_manifest_handlers.h", | 45 "common_manifest_handlers.h", |
| 46 "consumer_id.cc", |
| 47 "consumer_id.h", |
46 "csp_validator.cc", | 48 "csp_validator.cc", |
47 "csp_validator.h", | 49 "csp_validator.h", |
48 "dom_action_types.h", | 50 "dom_action_types.h", |
49 "draggable_region.cc", | 51 "draggable_region.cc", |
50 "draggable_region.h", | 52 "draggable_region.h", |
51 "error_utils.cc", | 53 "error_utils.cc", |
52 "error_utils.h", | 54 "error_utils.h", |
53 "event_filter.cc", | 55 "event_filter.cc", |
54 "event_filter.h", | 56 "event_filter.h", |
55 "event_filtering_info.cc", | 57 "event_filtering_info.cc", |
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
254 "manifest_handlers/nacl_modules_handler.cc", | 256 "manifest_handlers/nacl_modules_handler.cc", |
255 "manifest_handlers/nacl_modules_handler.h", | 257 "manifest_handlers/nacl_modules_handler.h", |
256 ] | 258 ] |
257 } | 259 } |
258 | 260 |
259 if (is_win) { | 261 if (is_win) { |
260 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int
truncations. | 262 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int
truncations. |
261 } | 263 } |
262 } | 264 } |
263 } # enable_extensions | 265 } # enable_extensions |
OLD | NEW |