| 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 18 matching lines...) Expand all Loading... |
| 29 "audio_decoder_config.cc", | 29 "audio_decoder_config.cc", |
| 30 "audio_decoder_config.h", | 30 "audio_decoder_config.h", |
| 31 "audio_discard_helper.cc", | 31 "audio_discard_helper.cc", |
| 32 "audio_discard_helper.h", | 32 "audio_discard_helper.h", |
| 33 "audio_fifo.cc", | 33 "audio_fifo.cc", |
| 34 "audio_fifo.h", | 34 "audio_fifo.h", |
| 35 "audio_hardware_config.cc", | 35 "audio_hardware_config.cc", |
| 36 "audio_hardware_config.h", | 36 "audio_hardware_config.h", |
| 37 "audio_hash.cc", | 37 "audio_hash.cc", |
| 38 "audio_hash.h", | 38 "audio_hash.h", |
| 39 "audio_output_device_callback_util.cc", |
| 40 "audio_output_device_callback_util.h", |
| 39 "audio_pull_fifo.cc", | 41 "audio_pull_fifo.cc", |
| 40 "audio_pull_fifo.h", | 42 "audio_pull_fifo.h", |
| 41 "audio_renderer.cc", | 43 "audio_renderer.cc", |
| 42 "audio_renderer.h", | 44 "audio_renderer.h", |
| 43 "audio_renderer_mixer.cc", | 45 "audio_renderer_mixer.cc", |
| 44 "audio_renderer_mixer.h", | 46 "audio_renderer_mixer.h", |
| 45 "audio_renderer_mixer_input.cc", | 47 "audio_renderer_mixer_input.cc", |
| 46 "audio_renderer_mixer_input.h", | 48 "audio_renderer_mixer_input.h", |
| 47 "audio_renderer_sink.h", | 49 "audio_renderer_sink.h", |
| 48 "audio_shifter.cc", | 50 "audio_shifter.cc", |
| (...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 513 if (is_posix) { | 515 if (is_posix) { |
| 514 yasm_flags += [ "-DELF" ] | 516 yasm_flags += [ "-DELF" ] |
| 515 if (current_cpu == "x64") { | 517 if (current_cpu == "x64") { |
| 516 # TODO(ajwong): Why isn't this true in mac? | 518 # TODO(ajwong): Why isn't this true in mac? |
| 517 yasm_flags += [ "-DPIC" ] | 519 yasm_flags += [ "-DPIC" ] |
| 518 } | 520 } |
| 519 } | 521 } |
| 520 } | 522 } |
| 521 } | 523 } |
| 522 } | 524 } |
| OLD | NEW |