| 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 "features/simple_feature.cc", | 102 "features/simple_feature.cc", |
| 103 "features/simple_feature.h", | 103 "features/simple_feature.h", |
| 104 "features/simple_feature_filter.cc", | 104 "features/simple_feature_filter.cc", |
| 105 "features/simple_feature_filter.h", | 105 "features/simple_feature_filter.h", |
| 106 "features/behavior_feature.cc", | 106 "features/behavior_feature.cc", |
| 107 "features/behavior_feature.h", | 107 "features/behavior_feature.h", |
| 108 "file_util.cc", | 108 "file_util.cc", |
| 109 "file_util.h", | 109 "file_util.h", |
| 110 "guest_view/guest_view_constants.cc", | 110 "guest_view/guest_view_constants.cc", |
| 111 "guest_view/guest_view_constants.h", | 111 "guest_view/guest_view_constants.h", |
| 112 "guest_view/guest_view_messages.h", |
| 112 "host_id.h", | 113 "host_id.h", |
| 113 "image_util.cc", | 114 "image_util.cc", |
| 114 "image_util.h", | 115 "image_util.h", |
| 115 "install_warning.cc", | 116 "install_warning.cc", |
| 116 "install_warning.h", | 117 "install_warning.h", |
| 117 "manifest.cc", | 118 "manifest.cc", |
| 118 "manifest.h", | 119 "manifest.h", |
| 119 "manifest_constants.cc", | 120 "manifest_constants.cc", |
| 120 "manifest_constants.h", | 121 "manifest_constants.h", |
| 121 "manifest_handler.cc", | 122 "manifest_handler.cc", |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 "manifest_handlers/nacl_modules_handler.cc", | 267 "manifest_handlers/nacl_modules_handler.cc", |
| 267 "manifest_handlers/nacl_modules_handler.h", | 268 "manifest_handlers/nacl_modules_handler.h", |
| 268 ] | 269 ] |
| 269 } | 270 } |
| 270 | 271 |
| 271 if (is_win) { | 272 if (is_win) { |
| 272 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int
truncations. | 273 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int
truncations. |
| 273 } | 274 } |
| 274 } | 275 } |
| 275 } # enable_extensions | 276 } # enable_extensions |
| OLD | NEW |