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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 "multi_channel_resampler.cc", | 131 "multi_channel_resampler.cc", |
132 "multi_channel_resampler.h", | 132 "multi_channel_resampler.h", |
133 "null_video_sink.cc", | 133 "null_video_sink.cc", |
134 "null_video_sink.h", | 134 "null_video_sink.h", |
135 "output_device.h", | 135 "output_device.h", |
136 "pipeline.cc", | 136 "pipeline.cc", |
137 "pipeline.h", | 137 "pipeline.h", |
138 "pipeline_status.h", | 138 "pipeline_status.h", |
139 "player_tracker.cc", | 139 "player_tracker.cc", |
140 "player_tracker.h", | 140 "player_tracker.h", |
| 141 "provision_fetcher.h", |
141 "ranges.cc", | 142 "ranges.cc", |
142 "ranges.h", | 143 "ranges.h", |
143 "renderer.cc", | 144 "renderer.cc", |
144 "renderer.h", | 145 "renderer.h", |
145 "renderer_factory.cc", | 146 "renderer_factory.cc", |
146 "renderer_factory.h", | 147 "renderer_factory.h", |
147 "sample_format.cc", | 148 "sample_format.cc", |
148 "sample_format.h", | 149 "sample_format.h", |
149 "seekable_buffer.cc", | 150 "seekable_buffer.cc", |
150 "seekable_buffer.h", | 151 "seekable_buffer.h", |
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
540 if (is_posix) { | 541 if (is_posix) { |
541 yasm_flags += [ "-DELF" ] | 542 yasm_flags += [ "-DELF" ] |
542 if (current_cpu == "x64") { | 543 if (current_cpu == "x64") { |
543 # TODO(ajwong): Why isn't this true in mac? | 544 # TODO(ajwong): Why isn't this true in mac? |
544 yasm_flags += [ "-DPIC" ] | 545 yasm_flags += [ "-DPIC" ] |
545 } | 546 } |
546 } | 547 } |
547 } | 548 } |
548 } | 549 } |
549 } | 550 } |
OLD | NEW |