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 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 7 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
8 | 8 |
9 # GYP version: extensions/extensions.gyp:extensions_common_constants | 9 # GYP version: extensions/extensions.gyp:extensions_common_constants |
10 source_set("common_constants") { | 10 source_set("common_constants") { |
(...skipping 28 matching lines...) Expand all Loading... | |
39 "api/sockets/sockets_manifest_data.cc", | 39 "api/sockets/sockets_manifest_data.cc", |
40 "api/sockets/sockets_manifest_data.h", | 40 "api/sockets/sockets_manifest_data.h", |
41 "api/sockets/sockets_manifest_handler.cc", | 41 "api/sockets/sockets_manifest_handler.cc", |
42 "api/sockets/sockets_manifest_handler.h", | 42 "api/sockets/sockets_manifest_handler.h", |
43 "api/sockets/sockets_manifest_permission.cc", | 43 "api/sockets/sockets_manifest_permission.cc", |
44 "api/sockets/sockets_manifest_permission.h", | 44 "api/sockets/sockets_manifest_permission.h", |
45 "cast/cast_cert_validator.cc", | 45 "cast/cast_cert_validator.cc", |
46 "cast/cast_cert_validator.h", | 46 "cast/cast_cert_validator.h", |
47 "common_manifest_handlers.cc", | 47 "common_manifest_handlers.cc", |
48 "common_manifest_handlers.h", | 48 "common_manifest_handlers.h", |
49 "consumer_id.h", | |
Devlin
2015/01/26 20:12:09
host_id
Xi Han
2015/01/26 23:27:53
Great catch! How can I forget to update here:(
| |
49 "csp_validator.cc", | 50 "csp_validator.cc", |
50 "csp_validator.h", | 51 "csp_validator.h", |
51 "dom_action_types.h", | 52 "dom_action_types.h", |
52 "draggable_region.cc", | 53 "draggable_region.cc", |
53 "draggable_region.h", | 54 "draggable_region.h", |
54 "error_utils.cc", | 55 "error_utils.cc", |
55 "error_utils.h", | 56 "error_utils.h", |
56 "event_filter.cc", | 57 "event_filter.cc", |
57 "event_filter.h", | 58 "event_filter.h", |
58 "event_filtering_info.cc", | 59 "event_filtering_info.cc", |
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
265 "manifest_handlers/nacl_modules_handler.cc", | 266 "manifest_handlers/nacl_modules_handler.cc", |
266 "manifest_handlers/nacl_modules_handler.h", | 267 "manifest_handlers/nacl_modules_handler.h", |
267 ] | 268 ] |
268 } | 269 } |
269 | 270 |
270 if (is_win) { | 271 if (is_win) { |
271 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 272 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
272 } | 273 } |
273 } | 274 } |
274 } # enable_extensions | 275 } # enable_extensions |
OLD | NEW |