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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 defines = [] | 204 defines = [] |
205 public_deps = [] | 205 public_deps = [] |
206 deps = [ | 206 deps = [ |
207 "//ui/events:events_base", | 207 "//ui/events:events_base", |
208 "//skia", | 208 "//skia", |
209 ] | 209 ] |
210 libs = [] | 210 libs = [] |
211 configs += [ | 211 configs += [ |
212 # This target uses the ALLOCATOR_SHIM define. | 212 # This target uses the ALLOCATOR_SHIM define. |
213 "//base/allocator:allocator_shim_define", | 213 "//base/allocator:allocator_shim_define", |
| 214 "//build/config:precompiled_headers", |
214 "//media:media_config", | 215 "//media:media_config", |
215 "//media:media_implementation", | 216 "//media:media_implementation", |
216 ] | 217 ] |
217 | 218 |
218 if (media_use_ffmpeg) { | 219 if (media_use_ffmpeg) { |
219 sources += [ | 220 sources += [ |
220 "audio_video_metadata_extractor.cc", | 221 "audio_video_metadata_extractor.cc", |
221 "audio_video_metadata_extractor.h", | 222 "audio_video_metadata_extractor.h", |
222 "container_names.cc", | 223 "container_names.cc", |
223 "container_names.h", | 224 "container_names.h", |
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
521 if (is_posix) { | 522 if (is_posix) { |
522 yasm_flags += [ "-DELF" ] | 523 yasm_flags += [ "-DELF" ] |
523 if (current_cpu == "x64") { | 524 if (current_cpu == "x64") { |
524 # TODO(ajwong): Why isn't this true in mac? | 525 # TODO(ajwong): Why isn't this true in mac? |
525 yasm_flags += [ "-DPIC" ] | 526 yasm_flags += [ "-DPIC" ] |
526 } | 527 } |
527 } | 528 } |
528 } | 529 } |
529 } | 530 } |
530 } | 531 } |
OLD | NEW |