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", |
381 "//skia", | 382 "//skia", |
382 "//testing/gmock", | 383 "//testing/gmock", |
383 "//testing/gtest", | 384 "//testing/gtest", |
384 ] | 385 ] |
385 | 386 |
386 if (media_use_ffmpeg) { | 387 if (media_use_ffmpeg) { |
387 sources += [ | 388 sources += [ |
388 "audio_video_metadata_extractor_unittest.cc", | 389 "audio_video_metadata_extractor_unittest.cc", |
389 "media_file_checker_unittest.cc", | 390 "media_file_checker_unittest.cc", |
390 ] | 391 ] |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
494 if (is_posix) { | 495 if (is_posix) { |
495 yasm_flags += [ "-DELF" ] | 496 yasm_flags += [ "-DELF" ] |
496 if (current_cpu == "x64") { | 497 if (current_cpu == "x64") { |
497 # TODO(ajwong): Why isn't this true in mac? | 498 # TODO(ajwong): Why isn't this true in mac? |
498 yasm_flags += [ "-DPIC" ] | 499 yasm_flags += [ "-DPIC" ] |
499 } | 500 } |
500 } | 501 } |
501 } | 502 } |
502 } | 503 } |
503 } | 504 } |
OLD | NEW |