| 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 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 370 "callback_holder.h", | 370 "callback_holder.h", |
| 371 "callback_holder_unittest.cc", | 371 "callback_holder_unittest.cc", |
| 372 "channel_mixer_unittest.cc", | 372 "channel_mixer_unittest.cc", |
| 373 "channel_mixing_matrix_unittest.cc", | 373 "channel_mixing_matrix_unittest.cc", |
| 374 "data_buffer_unittest.cc", | 374 "data_buffer_unittest.cc", |
| 375 "decoder_buffer_queue_unittest.cc", | 375 "decoder_buffer_queue_unittest.cc", |
| 376 "decoder_buffer_unittest.cc", | 376 "decoder_buffer_unittest.cc", |
| 377 "djb2_unittest.cc", | 377 "djb2_unittest.cc", |
| 378 "gmock_callback_support_unittest.cc", | 378 "gmock_callback_support_unittest.cc", |
| 379 "key_systems_unittest.cc", | 379 "key_systems_unittest.cc", |
| 380 "mime_util_unittest.cc", |
| 380 "moving_average_unittest.cc", | 381 "moving_average_unittest.cc", |
| 381 "multi_channel_resampler_unittest.cc", | 382 "multi_channel_resampler_unittest.cc", |
| 382 "null_video_sink_unittest.cc", | 383 "null_video_sink_unittest.cc", |
| 383 "pipeline_unittest.cc", | 384 "pipeline_unittest.cc", |
| 384 "ranges_unittest.cc", | 385 "ranges_unittest.cc", |
| 385 "run_all_unittests.cc", | 386 "run_all_unittests.cc", |
| 386 "seekable_buffer_unittest.cc", | 387 "seekable_buffer_unittest.cc", |
| 387 "serial_runner_unittest.cc", | 388 "serial_runner_unittest.cc", |
| 388 "sinc_resampler_unittest.cc", | 389 "sinc_resampler_unittest.cc", |
| 389 "stream_parser_unittest.cc", | 390 "stream_parser_unittest.cc", |
| 390 "text_ranges_unittest.cc", | 391 "text_ranges_unittest.cc", |
| 391 "text_renderer_unittest.cc", | 392 "text_renderer_unittest.cc", |
| 392 "user_input_monitor_unittest.cc", | 393 "user_input_monitor_unittest.cc", |
| 393 "vector_math_testing.h", | 394 "vector_math_testing.h", |
| 394 "vector_math_unittest.cc", | 395 "vector_math_unittest.cc", |
| 395 "video_frame_pool_unittest.cc", | 396 "video_frame_pool_unittest.cc", |
| 396 "video_frame_unittest.cc", | 397 "video_frame_unittest.cc", |
| 397 "video_util_unittest.cc", | 398 "video_util_unittest.cc", |
| 398 "wall_clock_time_source_unittest.cc", | 399 "wall_clock_time_source_unittest.cc", |
| 399 "yuv_convert_unittest.cc", | 400 "yuv_convert_unittest.cc", |
| 400 ] | 401 ] |
| 401 configs += [ | 402 configs += [ |
| 402 "//build/config/compiler:no_size_t_to_int_warning", | 403 "//build/config/compiler:no_size_t_to_int_warning", |
| 403 "//media:media_config", | 404 "//media:media_config", |
| 404 ] | 405 ] |
| 405 deps = [ | 406 deps = [ |
| 406 ":test_support", | 407 ":test_support", |
| 407 "//gpu/command_buffer/common", | 408 "//gpu/command_buffer/common", |
| 408 "//media", | 409 "//media", |
| 410 "//media:media_mime_util", |
| 409 "//skia", | 411 "//skia", |
| 410 "//testing/gmock", | 412 "//testing/gmock", |
| 411 "//testing/gtest", | 413 "//testing/gtest", |
| 412 ] | 414 ] |
| 413 | 415 |
| 414 if (media_use_ffmpeg) { | 416 if (media_use_ffmpeg) { |
| 415 sources += [ | 417 sources += [ |
| 416 "audio_video_metadata_extractor_unittest.cc", | 418 "audio_video_metadata_extractor_unittest.cc", |
| 417 "media_file_checker_unittest.cc", | 419 "media_file_checker_unittest.cc", |
| 418 ] | 420 ] |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 525 if (is_posix) { | 527 if (is_posix) { |
| 526 yasm_flags += [ "-DELF" ] | 528 yasm_flags += [ "-DELF" ] |
| 527 if (current_cpu == "x64") { | 529 if (current_cpu == "x64") { |
| 528 # TODO(ajwong): Why isn't this true in mac? | 530 # TODO(ajwong): Why isn't this true in mac? |
| 529 yasm_flags += [ "-DPIC" ] | 531 yasm_flags += [ "-DPIC" ] |
| 530 } | 532 } |
| 531 } | 533 } |
| 532 } | 534 } |
| 533 } | 535 } |
| 534 } | 536 } |
| OLD | NEW |