| 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 521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 532 } | 532 } |
| 533 | 533 |
| 534 if (enable_ipc_fuzzer) { | 534 if (enable_ipc_fuzzer) { |
| 535 configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_config" ] | 535 configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_config" ] |
| 536 sources += [ | 536 sources += [ |
| 537 "external_ipc_dumper.cc", | 537 "external_ipc_dumper.cc", |
| 538 "external_ipc_dumper.h", | 538 "external_ipc_dumper.h", |
| 539 ] | 539 ] |
| 540 } | 540 } |
| 541 | 541 |
| 542 if (enable_pepper_cdms) { | 542 if (enable_cdm_host_verification) { |
| 543 sources += [ | 543 sources += [ |
| 544 "media/cdm_host_file.cc", | 544 "media/cdm_host_file.cc", |
| 545 "media/cdm_host_file.h", | 545 "media/cdm_host_file.h", |
| 546 "media/cdm_host_files.cc", | 546 "media/cdm_host_files.cc", |
| 547 "media/cdm_host_files.h", | 547 "media/cdm_host_files.h", |
| 548 ] | 548 ] |
| 549 deps += [ | 549 deps += [ |
| 550 "//media:cdm_paths", | 550 "//media:cdm_paths", |
| 551 | 551 |
| 552 # Needed for finding CDM path from CDM adapter path. | 552 # Needed for finding CDM path from CDM adapter path. |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 626 "//url/mojo:url_mojom_origin", | 626 "//url/mojo:url_mojom_origin", |
| 627 ] | 627 ] |
| 628 | 628 |
| 629 overridden_deps = [ "//ipc:mojom" ] | 629 overridden_deps = [ "//ipc:mojom" ] |
| 630 component_deps = [ "//ipc" ] | 630 component_deps = [ "//ipc" ] |
| 631 | 631 |
| 632 export_class_attribute = "CONTENT_EXPORT" | 632 export_class_attribute = "CONTENT_EXPORT" |
| 633 export_define = "CONTENT_IMPLEMENTATION=1" | 633 export_define = "CONTENT_IMPLEMENTATION=1" |
| 634 export_header = "content/common/content_export.h" | 634 export_header = "content/common/content_export.h" |
| 635 } | 635 } |
| OLD | NEW |