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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 "time_delta_interpolator.cc", | 177 "time_delta_interpolator.cc", |
178 "time_delta_interpolator.h", | 178 "time_delta_interpolator.h", |
179 "time_source.h", | 179 "time_source.h", |
180 "timestamp_constants.h", | 180 "timestamp_constants.h", |
181 "user_input_monitor.cc", | 181 "user_input_monitor.cc", |
182 "user_input_monitor.h", | 182 "user_input_monitor.h", |
183 "video_capture_types.cc", | 183 "video_capture_types.cc", |
184 "video_capture_types.h", | 184 "video_capture_types.h", |
185 "video_capturer_source.cc", | 185 "video_capturer_source.cc", |
186 "video_capturer_source.h", | 186 "video_capturer_source.h", |
| 187 "video_codecs.cc", |
| 188 "video_codecs.h", |
187 "video_decoder.cc", | 189 "video_decoder.cc", |
188 "video_decoder.h", | 190 "video_decoder.h", |
189 "video_decoder_config.cc", | 191 "video_decoder_config.cc", |
190 "video_decoder_config.h", | 192 "video_decoder_config.h", |
191 "video_frame.cc", | 193 "video_frame.cc", |
192 "video_frame.h", | 194 "video_frame.h", |
193 "video_frame_metadata.cc", | 195 "video_frame_metadata.cc", |
194 "video_frame_metadata.h", | 196 "video_frame_metadata.h", |
195 "video_frame_pool.cc", | 197 "video_frame_pool.cc", |
196 "video_frame_pool.h", | 198 "video_frame_pool.h", |
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
535 if (is_posix) { | 537 if (is_posix) { |
536 yasm_flags += [ "-DELF" ] | 538 yasm_flags += [ "-DELF" ] |
537 if (current_cpu == "x64") { | 539 if (current_cpu == "x64") { |
538 # TODO(ajwong): Why isn't this true in mac? | 540 # TODO(ajwong): Why isn't this true in mac? |
539 yasm_flags += [ "-DPIC" ] | 541 yasm_flags += [ "-DPIC" ] |
540 } | 542 } |
541 } | 543 } |
542 } | 544 } |
543 } | 545 } |
544 } | 546 } |
OLD | NEW |