| 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 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 } | 317 } |
| 318 } | 318 } |
| 319 | 319 |
| 320 source_set("test_support") { | 320 source_set("test_support") { |
| 321 testonly = true | 321 testonly = true |
| 322 sources = [ | 322 sources = [ |
| 323 "fake_audio_render_callback.cc", | 323 "fake_audio_render_callback.cc", |
| 324 "fake_audio_render_callback.h", | 324 "fake_audio_render_callback.h", |
| 325 "fake_audio_renderer_sink.cc", | 325 "fake_audio_renderer_sink.cc", |
| 326 "fake_audio_renderer_sink.h", | 326 "fake_audio_renderer_sink.h", |
| 327 "fake_demuxer_stream.cc", |
| 328 "fake_demuxer_stream.h", |
| 327 "fake_text_track_stream.cc", | 329 "fake_text_track_stream.cc", |
| 328 "fake_text_track_stream.h", | 330 "fake_text_track_stream.h", |
| 329 "gmock_callback_support.h", | 331 "gmock_callback_support.h", |
| 330 "mock_audio_renderer_sink.cc", | 332 "mock_audio_renderer_sink.cc", |
| 331 "mock_audio_renderer_sink.h", | 333 "mock_audio_renderer_sink.h", |
| 332 "mock_demuxer_host.cc", | 334 "mock_demuxer_host.cc", |
| 333 "mock_demuxer_host.h", | 335 "mock_demuxer_host.h", |
| 334 "mock_filters.cc", | 336 "mock_filters.cc", |
| 335 "mock_filters.h", | 337 "mock_filters.h", |
| 336 "null_video_sink.cc", | 338 "null_video_sink.cc", |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 "bind_to_current_loop_unittest.cc", | 370 "bind_to_current_loop_unittest.cc", |
| 369 "bit_reader_unittest.cc", | 371 "bit_reader_unittest.cc", |
| 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", |
| 380 "fake_demuxer_stream_unittest.cc", |
| 378 "gmock_callback_support_unittest.cc", | 381 "gmock_callback_support_unittest.cc", |
| 379 "key_systems_unittest.cc", | 382 "key_systems_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", |
| (...skipping 137 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 |