| 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("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//media/media_options.gni") | 7 import("//media/media_options.gni") |
| 8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
| 9 import("//ppapi/features/features.gni") | 9 import("//ppapi/features/features.gni") |
| 10 import("//sandbox/features.gni") | 10 import("//sandbox/features.gni") |
| (...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 526 deps += [ "//media/gpu" ] | 526 deps += [ "//media/gpu" ] |
| 527 } | 527 } |
| 528 | 528 |
| 529 if (enable_ipc_fuzzer) { | 529 if (enable_ipc_fuzzer) { |
| 530 configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_config" ] | 530 configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_config" ] |
| 531 sources += [ | 531 sources += [ |
| 532 "external_ipc_dumper.cc", | 532 "external_ipc_dumper.cc", |
| 533 "external_ipc_dumper.h", | 533 "external_ipc_dumper.h", |
| 534 ] | 534 ] |
| 535 } | 535 } |
| 536 |
| 537 if (enable_pepper_cdms) { |
| 538 sources += [ |
| 539 "media/cdm_host_file.cc", |
| 540 "media/cdm_host_file.h", |
| 541 "media/cdm_host_files.cc", |
| 542 "media/cdm_host_files.h", |
| 543 ] |
| 544 deps += [ |
| 545 "//media:cdm_paths", |
| 546 |
| 547 # Needed for finding CDM path from CDM adapter path. |
| 548 # TODO(xhwang): Remove this dependency when CDM adapter is deprecated. |
| 549 # See http://crbug.com/403462 |
| 550 "//third_party/widevine/cdm:headers", |
| 551 ] |
| 552 } |
| 536 } | 553 } |
| 537 | 554 |
| 538 # See comment at the top of //content/BUILD.gn for how this works. | 555 # See comment at the top of //content/BUILD.gn for how this works. |
| 539 group("for_content_tests") { | 556 group("for_content_tests") { |
| 540 visibility = [ "//content/test/*" ] | 557 visibility = [ "//content/test/*" ] |
| 541 if (!is_component_build) { | 558 if (!is_component_build) { |
| 542 public_deps = [ | 559 public_deps = [ |
| 543 ":common", | 560 ":common", |
| 544 ] | 561 ] |
| 545 } | 562 } |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 601 "//ui/gfx/geometry/mojo", | 618 "//ui/gfx/geometry/mojo", |
| 602 "//ui/gfx/mojo", | 619 "//ui/gfx/mojo", |
| 603 "//url/mojo:url_mojom_gurl", | 620 "//url/mojo:url_mojom_gurl", |
| 604 "//url/mojo:url_mojom_origin", | 621 "//url/mojo:url_mojom_origin", |
| 605 ] | 622 ] |
| 606 | 623 |
| 607 export_class_attribute = "CONTENT_EXPORT" | 624 export_class_attribute = "CONTENT_EXPORT" |
| 608 export_define = "CONTENT_IMPLEMENTATION=1" | 625 export_define = "CONTENT_IMPLEMENTATION=1" |
| 609 export_header = "content/common/content_export.h" | 626 export_header = "content/common/content_export.h" |
| 610 } | 627 } |
| OLD | NEW |