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/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//build/config/linux/pkg_config.gni") | 8 import("//build/config/linux/pkg_config.gni") |
9 import("//media/media_options.gni") | 9 import("//media/media_options.gni") |
10 | 10 |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 "decrypt_config.cc", | 72 "decrypt_config.cc", |
73 "decrypt_config.h", | 73 "decrypt_config.h", |
74 "decryptor.cc", | 74 "decryptor.cc", |
75 "decryptor.h", | 75 "decryptor.h", |
76 "demuxer.cc", | 76 "demuxer.cc", |
77 "demuxer.h", | 77 "demuxer.h", |
78 "demuxer_stream.cc", | 78 "demuxer_stream.cc", |
79 "demuxer_stream.h", | 79 "demuxer_stream.h", |
80 "djb2.cc", | 80 "djb2.cc", |
81 "djb2.h", | 81 "djb2.h", |
82 "filter_collection.cc", | |
83 "filter_collection.h", | |
84 "media.cc", | 82 "media.cc", |
85 "media.h", | 83 "media.h", |
86 "media_keys.cc", | 84 "media_keys.cc", |
87 "media_keys.h", | 85 "media_keys.h", |
88 "media_log.cc", | 86 "media_log.cc", |
89 "media_log.h", | 87 "media_log.h", |
90 "media_log_event.h", | 88 "media_log_event.h", |
91 "media_switches.cc", | 89 "media_switches.cc", |
92 "media_switches.h", | 90 "media_switches.h", |
93 "multi_channel_resampler.cc", | 91 "multi_channel_resampler.cc", |
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
413 if (is_posix) { | 411 if (is_posix) { |
414 yasm_flags += [ "-DELF" ] | 412 yasm_flags += [ "-DELF" ] |
415 if (cpu_arch == "x64") { | 413 if (cpu_arch == "x64") { |
416 # TODO(ajwong): Why isn't this true in mac? | 414 # TODO(ajwong): Why isn't this true in mac? |
417 yasm_flags += [ "-DPIC" ] | 415 yasm_flags += [ "-DPIC" ] |
418 } | 416 } |
419 } | 417 } |
420 } | 418 } |
421 } | 419 } |
422 } | 420 } |
OLD | NEW |