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

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

Issue 2618493002: Chrome app manifest support for action handlers. (Closed)
Patch Set: Address comments Created 3 years, 11 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
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("//extensions/features/features.gni") 6 import("//extensions/features/features.gni")
7 import("//mojo/public/tools/bindings/mojom.gni") 7 import("//mojo/public/tools/bindings/mojom.gni")
8 8
9 source_set("common_constants") { 9 source_set("common_constants") {
10 sources = [ 10 sources = [
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 "//ui/gfx/ipc/skia", 291 "//ui/gfx/ipc/skia",
292 "//url", 292 "//url",
293 ] 293 ]
294 294
295 if (enable_nacl) { 295 if (enable_nacl) {
296 sources += [ 296 sources += [
297 "manifest_handlers/nacl_modules_handler.cc", 297 "manifest_handlers/nacl_modules_handler.cc",
298 "manifest_handlers/nacl_modules_handler.h", 298 "manifest_handlers/nacl_modules_handler.h",
299 ] 299 ]
300 } 300 }
301
302 if (is_chromeos) {
303 sources += [
304 "manifest_handlers/action_handlers_handler.cc",
305 "manifest_handlers/action_handlers_handler.h",
306 ]
307 }
301 } 308 }
302 309
303 source_set("unit_tests") { 310 source_set("unit_tests") {
304 testonly = true 311 testonly = true
305 sources = [ 312 sources = [
306 "api/declarative/declarative_manifest_unittest.cc", 313 "api/declarative/declarative_manifest_unittest.cc",
307 "api/printer_provider/usb_printer_manifest_unittest.cc", 314 "api/printer_provider/usb_printer_manifest_unittest.cc",
308 "api/sockets/sockets_manifest_permission_unittest.cc", 315 "api/sockets/sockets_manifest_permission_unittest.cc",
309 "csp_validator_unittest.cc", 316 "csp_validator_unittest.cc",
310 "event_filter_unittest.cc", 317 "event_filter_unittest.cc",
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 "//extensions:test_support", 365 "//extensions:test_support",
359 "//extensions/browser", 366 "//extensions/browser",
360 "//extensions/strings", 367 "//extensions/strings",
361 "//ipc", 368 "//ipc",
362 "//testing/gmock", 369 "//testing/gmock",
363 "//testing/gtest", 370 "//testing/gtest",
364 "//ui/base", 371 "//ui/base",
365 "//ui/gfx", 372 "//ui/gfx",
366 "//url", 373 "//url",
367 ] 374 ]
375
376 if (is_chromeos) {
377 sources += [ "manifest_handlers/action_handlers_handler_unittest.cc" ]
378 }
368 } 379 }
369 } # enable_extensions 380 } # enable_extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698