| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 "decoder_buffer_queue.cc", | 70 "decoder_buffer_queue.cc", |
| 71 "decoder_buffer_queue.h", | 71 "decoder_buffer_queue.h", |
| 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 "demuxer_stream_provider.cc", |
| 81 "demuxer_stream_provider.h", |
| 80 "djb2.cc", | 82 "djb2.cc", |
| 81 "djb2.h", | 83 "djb2.h", |
| 82 "media.cc", | 84 "media.cc", |
| 83 "media.h", | 85 "media.h", |
| 84 "media_keys.cc", | 86 "media_keys.cc", |
| 85 "media_keys.h", | 87 "media_keys.h", |
| 86 "media_log.cc", | 88 "media_log.cc", |
| 87 "media_log.h", | 89 "media_log.h", |
| 88 "media_log_event.h", | 90 "media_log_event.h", |
| 89 "media_switches.cc", | 91 "media_switches.cc", |
| (...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 418 if (is_posix) { | 420 if (is_posix) { |
| 419 yasm_flags += [ "-DELF" ] | 421 yasm_flags += [ "-DELF" ] |
| 420 if (cpu_arch == "x64") { | 422 if (cpu_arch == "x64") { |
| 421 # TODO(ajwong): Why isn't this true in mac? | 423 # TODO(ajwong): Why isn't this true in mac? |
| 422 yasm_flags += [ "-DPIC" ] | 424 yasm_flags += [ "-DPIC" ] |
| 423 } | 425 } |
| 424 } | 426 } |
| 425 } | 427 } |
| 426 } | 428 } |
| 427 } | 429 } |
| OLD | NEW |