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

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

Issue 435343002: Move NaClModulesHandler to src/extensions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: (nacl-modules) rebase, fix gyp Created 6 years, 4 months 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 | Annotate | Revision Log
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 6
7 # GYP version: extensions/extensions.gyp:extensions_common 7 # GYP version: extensions/extensions.gyp:extensions_common
8 source_set("common") { 8 source_set("common") {
9 sources = [ 9 sources = [
10 "api/messaging/message.h", 10 "api/messaging/message.h",
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 "api/sockets/sockets_manifest_handler.cc", 217 "api/sockets/sockets_manifest_handler.cc",
218 "api/sockets/sockets_manifest_handler.h", 218 "api/sockets/sockets_manifest_handler.h",
219 "api/sockets/sockets_manifest_permission.cc", 219 "api/sockets/sockets_manifest_permission.cc",
220 "api/sockets/sockets_manifest_permission.h", 220 "api/sockets/sockets_manifest_permission.h",
221 "extension_api.cc", 221 "extension_api.cc",
222 "manifest_handlers/externally_connectable.cc", 222 "manifest_handlers/externally_connectable.cc",
223 "manifest_handlers/externally_connectable.h", 223 "manifest_handlers/externally_connectable.h",
224 ] 224 ]
225 } 225 }
226 226
227 if (enable_nacl) {
228 sources += [
229 "manifest_handlers/nacl_modules_handler.cc",
230 "manifest_handlers/nacl_modules_handler.h",
231 ]
232 }
233
227 if (is_win) { 234 if (is_win) {
228 cflags = [ 235 cflags = [
229 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 236 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
230 ] 237 ]
231 } 238 }
232 } 239 }
OLDNEW
« no previous file with comments | « chrome/common/extensions/manifest_handlers/nacl_modules_handler.cc ('k') | extensions/common/common_manifest_handlers.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698