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/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//build/config/linux/pkg_config.gni") | 8 import("//build/config/linux/pkg_config.gni") |
9 import("//media/media_options.gni") | 9 import("//media/media_options.gni") |
10 | 10 |
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
371 "wall_clock_time_source_unittest.cc", | 371 "wall_clock_time_source_unittest.cc", |
372 "yuv_convert_unittest.cc", | 372 "yuv_convert_unittest.cc", |
373 ] | 373 ] |
374 configs += [ | 374 configs += [ |
375 "//build/config/compiler:no_size_t_to_int_warning", | 375 "//build/config/compiler:no_size_t_to_int_warning", |
376 "//media:media_config", | 376 "//media:media_config", |
377 ] | 377 ] |
378 deps = [ | 378 deps = [ |
379 ":base", | 379 ":base", |
380 ":test_support", | 380 ":test_support", |
381 "//gpu/command_buffer/common", | |
382 "//skia", | 381 "//skia", |
383 "//testing/gmock", | 382 "//testing/gmock", |
384 "//testing/gtest", | 383 "//testing/gtest", |
385 ] | 384 ] |
386 | 385 |
387 if (media_use_ffmpeg) { | 386 if (media_use_ffmpeg) { |
388 sources += [ | 387 sources += [ |
389 "audio_video_metadata_extractor_unittest.cc", | 388 "audio_video_metadata_extractor_unittest.cc", |
390 "media_file_checker_unittest.cc", | 389 "media_file_checker_unittest.cc", |
391 ] | 390 ] |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
495 if (is_posix) { | 494 if (is_posix) { |
496 yasm_flags += [ "-DELF" ] | 495 yasm_flags += [ "-DELF" ] |
497 if (current_cpu == "x64") { | 496 if (current_cpu == "x64") { |
498 # TODO(ajwong): Why isn't this true in mac? | 497 # TODO(ajwong): Why isn't this true in mac? |
499 yasm_flags += [ "-DPIC" ] | 498 yasm_flags += [ "-DPIC" ] |
500 } | 499 } |
501 } | 500 } |
502 } | 501 } |
503 } | 502 } |
504 } | 503 } |
OLD | NEW |