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/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 Loading... |
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 Loading... |
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 } |
OLD | NEW |