| 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("//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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |