| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/android/config.gni") | 6 import("//build/config/android/config.gni") |
| 7 import("//build/config/arm.gni") | 7 import("//build/config/arm.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/linux/pkg_config.gni") | 9 import("//build/config/linux/pkg_config.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 504 ] | 504 ] |
| 505 } | 505 } |
| 506 | 506 |
| 507 if (use_udev) { | 507 if (use_udev) { |
| 508 deps += [ "//device/udev_linux" ] | 508 deps += [ "//device/udev_linux" ] |
| 509 sources += [ | 509 sources += [ |
| 510 "device_monitors/device_monitor_udev.cc", | 510 "device_monitors/device_monitor_udev.cc", |
| 511 "device_monitors/device_monitor_udev.h", | 511 "device_monitors/device_monitor_udev.h", |
| 512 ] | 512 ] |
| 513 } | 513 } |
| 514 | |
| 515 # TODO(xhwang): Move other library CDM related files to this block as well. | |
| 516 if (enable_pepper_cdms) { | |
| 517 deps += [ | |
| 518 ":cdm_paths", | |
| 519 | |
| 520 # TODO(xhwang): Remove this after Widevine specific logic is removed in | |
| 521 # CdmAdapterFactory. See http://crbug.com/510604 | |
| 522 "//third_party/widevine/cdm:headers", | |
| 523 ] | |
| 524 sources += [ | |
| 525 "cdm/cdm_adapter_factory.cc", | |
| 526 "cdm/cdm_adapter_factory.h", | |
| 527 ] | |
| 528 } | |
| 529 } | 514 } |
| 530 | 515 |
| 531 config("cdm_manager_implementation") { | 516 config("cdm_manager_implementation") { |
| 532 defines = [ "CDM_MANAGER_IMPLEMENTATION" ] | 517 defines = [ "CDM_MANAGER_IMPLEMENTATION" ] |
| 533 } | 518 } |
| 534 | 519 |
| 535 # cdm_manager must not be a source_set() because CdmManager exposes a static | 520 # cdm_manager must not be a source_set() because CdmManager exposes a static |
| 536 # singleton, shared by multiple component()s. | 521 # singleton, shared by multiple component()s. |
| 537 # | 522 # |
| 538 # TODO(xhwang): Remove this component once AVDA no longer depends on it. | 523 # TODO(xhwang): Remove this component once AVDA no longer depends on it. |
| (...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1014 fuzzer_test("media_mp4_avcc_parser_fuzzer") { | 999 fuzzer_test("media_mp4_avcc_parser_fuzzer") { |
| 1015 sources = [ | 1000 sources = [ |
| 1016 "formats/mp4/mp4_avcc_parser_fuzzer.cc", | 1001 "formats/mp4/mp4_avcc_parser_fuzzer.cc", |
| 1017 ] | 1002 ] |
| 1018 deps = [ | 1003 deps = [ |
| 1019 ":media", | 1004 ":media", |
| 1020 "//base", | 1005 "//base", |
| 1021 ] | 1006 ] |
| 1022 } | 1007 } |
| 1023 } | 1008 } |
| OLD | NEW |