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("//mojo/public/tools/bindings/mojom.gni") | 6 import("//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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 "features/json_feature_provider_source.cc", | 93 "features/json_feature_provider_source.cc", |
94 "features/json_feature_provider_source.h", | 94 "features/json_feature_provider_source.h", |
95 "features/manifest_feature.cc", | 95 "features/manifest_feature.cc", |
96 "features/manifest_feature.h", | 96 "features/manifest_feature.h", |
97 "features/permission_feature.cc", | 97 "features/permission_feature.cc", |
98 "features/permission_feature.h", | 98 "features/permission_feature.h", |
99 "features/simple_feature.cc", | 99 "features/simple_feature.cc", |
100 "features/simple_feature.h", | 100 "features/simple_feature.h", |
101 "features/simple_feature_filter.cc", | 101 "features/simple_feature_filter.cc", |
102 "features/simple_feature_filter.h", | 102 "features/simple_feature_filter.h", |
| 103 "features/behavior_feature.cc", |
| 104 "features/behavior_feature.h", |
103 "file_util.cc", | 105 "file_util.cc", |
104 "file_util.h", | 106 "file_util.h", |
105 "guest_view/guest_view_constants.cc", | 107 "guest_view/guest_view_constants.cc", |
106 "guest_view/guest_view_constants.h", | 108 "guest_view/guest_view_constants.h", |
107 "image_util.cc", | 109 "image_util.cc", |
108 "image_util.h", | 110 "image_util.h", |
109 "install_warning.cc", | 111 "install_warning.cc", |
110 "install_warning.h", | 112 "install_warning.h", |
111 "manifest.cc", | 113 "manifest.cc", |
112 "manifest.h", | 114 "manifest.h", |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 "manifest_handlers/nacl_modules_handler.cc", | 254 "manifest_handlers/nacl_modules_handler.cc", |
253 "manifest_handlers/nacl_modules_handler.h", | 255 "manifest_handlers/nacl_modules_handler.h", |
254 ] | 256 ] |
255 } | 257 } |
256 | 258 |
257 if (is_win) { | 259 if (is_win) { |
258 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. |
259 } | 261 } |
260 } | 262 } |
261 } # enable_extensions | 263 } # enable_extensions |
OLD | NEW |