| 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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 "seekable_buffer.cc", | 134 "seekable_buffer.cc", |
| 135 "seekable_buffer.h", | 135 "seekable_buffer.h", |
| 136 "serial_runner.cc", | 136 "serial_runner.cc", |
| 137 "serial_runner.h", | 137 "serial_runner.h", |
| 138 "simd/convert_rgb_to_yuv.h", | 138 "simd/convert_rgb_to_yuv.h", |
| 139 "simd/convert_rgb_to_yuv_c.cc", | 139 "simd/convert_rgb_to_yuv_c.cc", |
| 140 "simd/convert_yuv_to_rgb.h", | 140 "simd/convert_yuv_to_rgb.h", |
| 141 "simd/convert_yuv_to_rgb_c.cc", | 141 "simd/convert_yuv_to_rgb_c.cc", |
| 142 "simd/filter_yuv.h", | 142 "simd/filter_yuv.h", |
| 143 "simd/filter_yuv_c.cc", | 143 "simd/filter_yuv_c.cc", |
| 144 "simd/yuv_to_rgb_table.cc", | |
| 145 "simd/yuv_to_rgb_table.h", | |
| 146 "sinc_resampler.cc", | 144 "sinc_resampler.cc", |
| 147 "sinc_resampler.h", | 145 "sinc_resampler.h", |
| 148 "stream_parser.cc", | 146 "stream_parser.cc", |
| 149 "stream_parser.h", | 147 "stream_parser.h", |
| 150 "stream_parser_buffer.cc", | 148 "stream_parser_buffer.cc", |
| 151 "stream_parser_buffer.h", | 149 "stream_parser_buffer.h", |
| 152 "text_cue.cc", | 150 "text_cue.cc", |
| 153 "text_cue.h", | 151 "text_cue.h", |
| 154 "text_ranges.cc", | 152 "text_ranges.cc", |
| 155 "text_ranges.h", | 153 "text_ranges.h", |
| (...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 468 if (is_posix) { | 466 if (is_posix) { |
| 469 yasm_flags += [ "-DELF" ] | 467 yasm_flags += [ "-DELF" ] |
| 470 if (cpu_arch == "x64") { | 468 if (cpu_arch == "x64") { |
| 471 # TODO(ajwong): Why isn't this true in mac? | 469 # TODO(ajwong): Why isn't this true in mac? |
| 472 yasm_flags += [ "-DPIC" ] | 470 yasm_flags += [ "-DPIC" ] |
| 473 } | 471 } |
| 474 } | 472 } |
| 475 } | 473 } |
| 476 } | 474 } |
| 477 } | 475 } |
| OLD | NEW |