Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(179)

Side by Side Diff: media/base/BUILD.gn

Issue 1407933010: media: Make MediaKeys ref-counted. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase only Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/arm.gni") 6 import("//build/config/arm.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build/config/linux/pkg_config.gni") 9 import("//build/config/linux/pkg_config.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 "media_file_checker.cc", 233 "media_file_checker.cc",
234 "media_file_checker.h", 234 "media_file_checker.h",
235 ] 235 ]
236 } 236 }
237 237
238 deps += [ "//third_party/ffmpeg" ] 238 deps += [ "//third_party/ffmpeg" ]
239 } 239 }
240 240
241 if (enable_browser_cdms) { 241 if (enable_browser_cdms) {
242 sources += [ 242 sources += [
243 "browser_cdm.cc",
244 "browser_cdm.h",
245 "browser_cdm_factory.cc", 243 "browser_cdm_factory.cc",
246 "browser_cdm_factory.h", 244 "browser_cdm_factory.h",
247 ] 245 ]
248 } 246 }
249 247
250 if (is_android) { 248 if (is_android) {
251 public_deps = [ 249 public_deps = [
252 "//media/base/android", 250 "//media/base/android",
253 "//media/base/android:media_java", 251 "//media/base/android:media_java",
254 "//media/base/android:media_jni_headers", 252 "//media/base/android:media_jni_headers",
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
541 if (is_posix) { 539 if (is_posix) {
542 yasm_flags += [ "-DELF" ] 540 yasm_flags += [ "-DELF" ]
543 if (current_cpu == "x64") { 541 if (current_cpu == "x64") {
544 # TODO(ajwong): Why isn't this true in mac? 542 # TODO(ajwong): Why isn't this true in mac?
545 yasm_flags += [ "-DPIC" ] 543 yasm_flags += [ "-DPIC" ]
546 } 544 }
547 } 545 }
548 } 546 }
549 } 547 }
550 } 548 }
OLDNEW
« no previous file with comments | « content/renderer/media/crypto/render_cdm_factory.cc ('k') | media/base/android/browser_cdm_factory_android.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698