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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 "event_filter.cc", | 56 "event_filter.cc", |
57 "event_filter.h", | 57 "event_filter.h", |
58 "event_filtering_info.cc", | 58 "event_filtering_info.cc", |
59 "event_filtering_info.h", | 59 "event_filtering_info.h", |
60 "event_matcher.cc", | 60 "event_matcher.cc", |
61 "event_matcher.h", | 61 "event_matcher.h", |
62 "extension.cc", | 62 "extension.cc", |
63 "extension.h", | 63 "extension.h", |
64 "extension_api.cc", | 64 "extension_api.cc", |
65 "extension_api.h", | 65 "extension_api.h", |
| 66 "extension_consumer.cc", |
| 67 "extension_consumer.h", |
66 "extension_icon_set.cc", | 68 "extension_icon_set.cc", |
67 "extension_icon_set.h", | 69 "extension_icon_set.h", |
68 "extension_l10n_util.cc", | 70 "extension_l10n_util.cc", |
69 "extension_l10n_util.h", | 71 "extension_l10n_util.h", |
70 "extension_message_generator.cc", | 72 "extension_message_generator.cc", |
71 "extension_message_generator.h", | 73 "extension_message_generator.h", |
72 "extension_messages.cc", | 74 "extension_messages.cc", |
73 "extension_messages.h", | 75 "extension_messages.h", |
74 "extension_paths.cc", | 76 "extension_paths.cc", |
75 "extension_paths.h", | 77 "extension_paths.h", |
(...skipping 27 matching lines...) Expand all Loading... |
103 "features/simple_feature.h", | 105 "features/simple_feature.h", |
104 "features/simple_feature_filter.cc", | 106 "features/simple_feature_filter.cc", |
105 "features/simple_feature_filter.h", | 107 "features/simple_feature_filter.h", |
106 "features/behavior_feature.cc", | 108 "features/behavior_feature.cc", |
107 "features/behavior_feature.h", | 109 "features/behavior_feature.h", |
108 "file_util.cc", | 110 "file_util.cc", |
109 "file_util.h", | 111 "file_util.h", |
110 "guest_view/guest_view_constants.cc", | 112 "guest_view/guest_view_constants.cc", |
111 "guest_view/guest_view_constants.h", | 113 "guest_view/guest_view_constants.h", |
112 "guest_view/guest_view_messages.h", | 114 "guest_view/guest_view_messages.h", |
| 115 "host_id.cc", |
113 "host_id.h", | 116 "host_id.h", |
114 "image_util.cc", | 117 "image_util.cc", |
115 "image_util.h", | 118 "image_util.h", |
116 "install_warning.cc", | 119 "install_warning.cc", |
117 "install_warning.h", | 120 "install_warning.h", |
118 "manifest.cc", | 121 "manifest.cc", |
119 "manifest.h", | 122 "manifest.h", |
120 "manifest_constants.cc", | 123 "manifest_constants.cc", |
121 "manifest_constants.h", | 124 "manifest_constants.h", |
122 "manifest_handler.cc", | 125 "manifest_handler.cc", |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
267 "manifest_handlers/nacl_modules_handler.cc", | 270 "manifest_handlers/nacl_modules_handler.cc", |
268 "manifest_handlers/nacl_modules_handler.h", | 271 "manifest_handlers/nacl_modules_handler.h", |
269 ] | 272 ] |
270 } | 273 } |
271 | 274 |
272 if (is_win) { | 275 if (is_win) { |
273 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int
truncations. | 276 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int
truncations. |
274 } | 277 } |
275 } | 278 } |
276 } # enable_extensions | 279 } # enable_extensions |
OLD | NEW |