| 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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 "manifest_constants.cc", | 115 "manifest_constants.cc", |
| 116 "manifest_constants.h", | 116 "manifest_constants.h", |
| 117 "manifest_handler.cc", | 117 "manifest_handler.cc", |
| 118 "manifest_handler.h", | 118 "manifest_handler.h", |
| 119 "manifest_handler_helpers.cc", | 119 "manifest_handler_helpers.cc", |
| 120 "manifest_handler_helpers.h", | 120 "manifest_handler_helpers.h", |
| 121 "manifest_handlers/background_info.cc", | 121 "manifest_handlers/background_info.cc", |
| 122 "manifest_handlers/background_info.h", | 122 "manifest_handlers/background_info.h", |
| 123 "manifest_handlers/csp_info.cc", | 123 "manifest_handlers/csp_info.cc", |
| 124 "manifest_handlers/csp_info.h", | 124 "manifest_handlers/csp_info.h", |
| 125 "manifest_handlers/default_locale_handler.cc", |
| 126 "manifest_handlers/default_locale_handler.h", |
| 125 "manifest_handlers/externally_connectable.cc", | 127 "manifest_handlers/externally_connectable.cc", |
| 126 "manifest_handlers/externally_connectable.h", | 128 "manifest_handlers/externally_connectable.h", |
| 127 "manifest_handlers/file_handler_info.cc", | 129 "manifest_handlers/file_handler_info.cc", |
| 128 "manifest_handlers/file_handler_info.h", | 130 "manifest_handlers/file_handler_info.h", |
| 129 "manifest_handlers/icons_handler.cc", | 131 "manifest_handlers/icons_handler.cc", |
| 130 "manifest_handlers/icons_handler.h", | 132 "manifest_handlers/icons_handler.h", |
| 131 "manifest_handlers/incognito_info.cc", | 133 "manifest_handlers/incognito_info.cc", |
| 132 "manifest_handlers/incognito_info.h", | 134 "manifest_handlers/incognito_info.h", |
| 133 "manifest_handlers/kiosk_mode_info.cc", | 135 "manifest_handlers/kiosk_mode_info.cc", |
| 134 "manifest_handlers/kiosk_mode_info.h", | 136 "manifest_handlers/kiosk_mode_info.h", |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 } | 254 } |
| 253 | 255 |
| 254 if (is_win) { | 256 if (is_win) { |
| 255 cflags = [ | 257 cflags = [ |
| 256 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 258 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 257 ] | 259 ] |
| 258 } | 260 } |
| 259 } | 261 } |
| 260 | 262 |
| 261 } # enable_extensions | 263 } # enable_extensions |
| OLD | NEW |