| 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("//chrome/version.gni") # TODO layering violation! | 6 import("//chrome/version.gni") # TODO layering violation! |
| 7 import("//media/cdm/ppapi/ppapi_cdm_adapter.gni") | 7 import("//media/cdm/ppapi/ppapi_cdm_adapter.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 | 9 |
| 10 # The GYP version supports build flags "use_fake_video_decoder" and | 10 # The GYP version supports build flags "use_fake_video_decoder" and |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 output = "$target_gen_dir/clearkeycdmadapter_version.rc" | 58 output = "$target_gen_dir/clearkeycdmadapter_version.rc" |
| 59 } | 59 } |
| 60 | 60 |
| 61 ppapi_cdm_adapter("clearkeycdmadapter") { | 61 ppapi_cdm_adapter("clearkeycdmadapter") { |
| 62 # Check whether the plugin's origin URL is valid. | 62 # Check whether the plugin's origin URL is valid. |
| 63 defines = [ "CHECK_DOCUMENT_URL" ] | 63 defines = [ "CHECK_DOCUMENT_URL" ] |
| 64 deps = [ | 64 deps = [ |
| 65 ":clearkeycdm", | 65 ":clearkeycdm", |
| 66 ":clearkeycdmadapter_resources", | 66 ":clearkeycdmadapter_resources", |
| 67 "//base", # Required for the allocator implementation. | 67 "//base", # Required for the allocator implementation. |
| 68 "//ppapi/cpp", | |
| 69 ] | 68 ] |
| 70 } | 69 } |
| OLD | NEW |