| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 "decryptor.cc", | 78 "decryptor.cc", |
| 79 "decryptor.h", | 79 "decryptor.h", |
| 80 "demuxer.cc", | 80 "demuxer.cc", |
| 81 "demuxer.h", | 81 "demuxer.h", |
| 82 "demuxer_stream.cc", | 82 "demuxer_stream.cc", |
| 83 "demuxer_stream.h", | 83 "demuxer_stream.h", |
| 84 "demuxer_stream_provider.cc", | 84 "demuxer_stream_provider.cc", |
| 85 "demuxer_stream_provider.h", | 85 "demuxer_stream_provider.h", |
| 86 "djb2.cc", | 86 "djb2.cc", |
| 87 "djb2.h", | 87 "djb2.h", |
| 88 "eme_constants.h", |
| 89 "key_system_info.cc", |
| 90 "key_system_info.h", |
| 88 "media.cc", | 91 "media.cc", |
| 89 "media.h", | 92 "media.h", |
| 90 "media_keys.cc", | 93 "media_keys.cc", |
| 91 "media_keys.h", | 94 "media_keys.h", |
| 92 "media_log.cc", | 95 "media_log.cc", |
| 93 "media_log.h", | 96 "media_log.h", |
| 94 "media_log_event.h", | 97 "media_log_event.h", |
| 95 "media_switches.cc", | 98 "media_switches.cc", |
| 96 "media_switches.h", | 99 "media_switches.h", |
| 97 "multi_channel_resampler.cc", | 100 "multi_channel_resampler.cc", |
| (...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 438 if (is_posix) { | 441 if (is_posix) { |
| 439 yasm_flags += [ "-DELF" ] | 442 yasm_flags += [ "-DELF" ] |
| 440 if (cpu_arch == "x64") { | 443 if (cpu_arch == "x64") { |
| 441 # TODO(ajwong): Why isn't this true in mac? | 444 # TODO(ajwong): Why isn't this true in mac? |
| 442 yasm_flags += [ "-DPIC" ] | 445 yasm_flags += [ "-DPIC" ] |
| 443 } | 446 } |
| 444 } | 447 } |
| 445 } | 448 } |
| 446 } | 449 } |
| 447 } | 450 } |
| OLD | NEW |