| 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 25 matching lines...) Expand all Loading... |
| 36 "api/bluetooth/bluetooth_manifest_data.h", | 36 "api/bluetooth/bluetooth_manifest_data.h", |
| 37 "api/bluetooth/bluetooth_manifest_handler.cc", | 37 "api/bluetooth/bluetooth_manifest_handler.cc", |
| 38 "api/bluetooth/bluetooth_manifest_handler.h", | 38 "api/bluetooth/bluetooth_manifest_handler.h", |
| 39 "api/bluetooth/bluetooth_manifest_permission.cc", | 39 "api/bluetooth/bluetooth_manifest_permission.cc", |
| 40 "api/bluetooth/bluetooth_manifest_permission.h", | 40 "api/bluetooth/bluetooth_manifest_permission.h", |
| 41 "api/declarative/declarative_manifest_data.cc", | 41 "api/declarative/declarative_manifest_data.cc", |
| 42 "api/declarative/declarative_manifest_data.h", | 42 "api/declarative/declarative_manifest_data.h", |
| 43 "api/declarative/declarative_manifest_handler.cc", | 43 "api/declarative/declarative_manifest_handler.cc", |
| 44 "api/declarative/declarative_manifest_handler.h", | 44 "api/declarative/declarative_manifest_handler.h", |
| 45 "api/messaging/message.h", | 45 "api/messaging/message.h", |
| 46 "api/messaging/port_id.cc", |
| 47 "api/messaging/port_id.h", |
| 46 "api/printer_provider/usb_printer_manifest_data.cc", | 48 "api/printer_provider/usb_printer_manifest_data.cc", |
| 47 "api/printer_provider/usb_printer_manifest_data.h", | 49 "api/printer_provider/usb_printer_manifest_data.h", |
| 48 "api/printer_provider/usb_printer_manifest_handler.cc", | 50 "api/printer_provider/usb_printer_manifest_handler.cc", |
| 49 "api/printer_provider/usb_printer_manifest_handler.h", | 51 "api/printer_provider/usb_printer_manifest_handler.h", |
| 50 "api/sockets/sockets_manifest_data.cc", | 52 "api/sockets/sockets_manifest_data.cc", |
| 51 "api/sockets/sockets_manifest_data.h", | 53 "api/sockets/sockets_manifest_data.h", |
| 52 "api/sockets/sockets_manifest_handler.cc", | 54 "api/sockets/sockets_manifest_handler.cc", |
| 53 "api/sockets/sockets_manifest_handler.h", | 55 "api/sockets/sockets_manifest_handler.h", |
| 54 "api/sockets/sockets_manifest_permission.cc", | 56 "api/sockets/sockets_manifest_permission.cc", |
| 55 "api/sockets/sockets_manifest_permission.h", | 57 "api/sockets/sockets_manifest_permission.h", |
| (...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 "//extensions/strings", | 358 "//extensions/strings", |
| 357 "//ipc", | 359 "//ipc", |
| 358 "//testing/gmock", | 360 "//testing/gmock", |
| 359 "//testing/gtest", | 361 "//testing/gtest", |
| 360 "//ui/base", | 362 "//ui/base", |
| 361 "//ui/gfx", | 363 "//ui/gfx", |
| 362 "//url", | 364 "//url", |
| 363 ] | 365 ] |
| 364 } | 366 } |
| 365 } # enable_extensions | 367 } # enable_extensions |
| OLD | NEW |