| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 "file_util.cc", | 103 "file_util.cc", |
| 104 "file_util.h", | 104 "file_util.h", |
| 105 "guest_view/guest_view_constants.cc", | 105 "guest_view/guest_view_constants.cc", |
| 106 "guest_view/guest_view_constants.h", | 106 "guest_view/guest_view_constants.h", |
| 107 "image_util.cc", |
| 108 "image_util.h", |
| 107 "install_warning.cc", | 109 "install_warning.cc", |
| 108 "install_warning.h", | 110 "install_warning.h", |
| 109 "manifest.cc", | 111 "manifest.cc", |
| 110 "manifest.h", | 112 "manifest.h", |
| 111 "manifest_constants.cc", | 113 "manifest_constants.cc", |
| 112 "manifest_constants.h", | 114 "manifest_constants.h", |
| 113 "manifest_handler.cc", | 115 "manifest_handler.cc", |
| 114 "manifest_handler.h", | 116 "manifest_handler.h", |
| 115 "manifest_handler_helpers.cc", | 117 "manifest_handler_helpers.cc", |
| 116 "manifest_handler_helpers.h", | 118 "manifest_handler_helpers.h", |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 "manifest_handlers/nacl_modules_handler.cc", | 250 "manifest_handlers/nacl_modules_handler.cc", |
| 249 "manifest_handlers/nacl_modules_handler.h", | 251 "manifest_handlers/nacl_modules_handler.h", |
| 250 ] | 252 ] |
| 251 } | 253 } |
| 252 | 254 |
| 253 if (is_win) { | 255 if (is_win) { |
| 254 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int
truncations. | 256 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int
truncations. |
| 255 } | 257 } |
| 256 } | 258 } |
| 257 } # enable_extensions | 259 } # enable_extensions |
| OLD | NEW |