| 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 "media_client.h", | 112 "media_client.h", |
| 113 "media_keys.cc", | 113 "media_keys.cc", |
| 114 "media_keys.h", | 114 "media_keys.h", |
| 115 "media_log.cc", | 115 "media_log.cc", |
| 116 "media_log.h", | 116 "media_log.h", |
| 117 "media_log_event.h", | 117 "media_log_event.h", |
| 118 "media_permission.cc", | 118 "media_permission.cc", |
| 119 "media_permission.h", | 119 "media_permission.h", |
| 120 "media_switches.cc", | 120 "media_switches.cc", |
| 121 "media_switches.h", | 121 "media_switches.h", |
| 122 "mime_util.cc", |
| 123 "mime_util.h", |
| 122 "moving_average.cc", | 124 "moving_average.cc", |
| 123 "moving_average.h", | 125 "moving_average.h", |
| 124 "multi_channel_resampler.cc", | 126 "multi_channel_resampler.cc", |
| 125 "multi_channel_resampler.h", | 127 "multi_channel_resampler.h", |
| 126 "null_video_sink.cc", | 128 "null_video_sink.cc", |
| 127 "null_video_sink.h", | 129 "null_video_sink.h", |
| 128 "pipeline.cc", | 130 "pipeline.cc", |
| 129 "pipeline.h", | 131 "pipeline.h", |
| 130 "pipeline_status.h", | 132 "pipeline_status.h", |
| 131 "player_tracker.cc", | 133 "player_tracker.cc", |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 370 "callback_holder.h", | 372 "callback_holder.h", |
| 371 "callback_holder_unittest.cc", | 373 "callback_holder_unittest.cc", |
| 372 "channel_mixer_unittest.cc", | 374 "channel_mixer_unittest.cc", |
| 373 "channel_mixing_matrix_unittest.cc", | 375 "channel_mixing_matrix_unittest.cc", |
| 374 "data_buffer_unittest.cc", | 376 "data_buffer_unittest.cc", |
| 375 "decoder_buffer_queue_unittest.cc", | 377 "decoder_buffer_queue_unittest.cc", |
| 376 "decoder_buffer_unittest.cc", | 378 "decoder_buffer_unittest.cc", |
| 377 "djb2_unittest.cc", | 379 "djb2_unittest.cc", |
| 378 "gmock_callback_support_unittest.cc", | 380 "gmock_callback_support_unittest.cc", |
| 379 "key_systems_unittest.cc", | 381 "key_systems_unittest.cc", |
| 382 "mime_util_unittest.cc", |
| 380 "moving_average_unittest.cc", | 383 "moving_average_unittest.cc", |
| 381 "multi_channel_resampler_unittest.cc", | 384 "multi_channel_resampler_unittest.cc", |
| 382 "null_video_sink_unittest.cc", | 385 "null_video_sink_unittest.cc", |
| 383 "pipeline_unittest.cc", | 386 "pipeline_unittest.cc", |
| 384 "ranges_unittest.cc", | 387 "ranges_unittest.cc", |
| 385 "run_all_unittests.cc", | 388 "run_all_unittests.cc", |
| 386 "seekable_buffer_unittest.cc", | 389 "seekable_buffer_unittest.cc", |
| 387 "serial_runner_unittest.cc", | 390 "serial_runner_unittest.cc", |
| 388 "sinc_resampler_unittest.cc", | 391 "sinc_resampler_unittest.cc", |
| 389 "stream_parser_unittest.cc", | 392 "stream_parser_unittest.cc", |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 525 if (is_posix) { | 528 if (is_posix) { |
| 526 yasm_flags += [ "-DELF" ] | 529 yasm_flags += [ "-DELF" ] |
| 527 if (current_cpu == "x64") { | 530 if (current_cpu == "x64") { |
| 528 # TODO(ajwong): Why isn't this true in mac? | 531 # TODO(ajwong): Why isn't this true in mac? |
| 529 yasm_flags += [ "-DPIC" ] | 532 yasm_flags += [ "-DPIC" ] |
| 530 } | 533 } |
| 531 } | 534 } |
| 532 } | 535 } |
| 533 } | 536 } |
| 534 } | 537 } |
| OLD | NEW |