Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(386)

Side by Side Diff: extensions/common/BUILD.gn

Issue 719243002: Move default_locale manifest handler out of //chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: type alias Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/utility/extensions/unpacker.cc ('k') | extensions/common/api/_manifest_features.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « chrome/utility/extensions/unpacker.cc ('k') | extensions/common/api/_manifest_features.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698