| 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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 "wall_clock_time_source.cc", | 202 "wall_clock_time_source.cc", |
| 203 "wall_clock_time_source.h", | 203 "wall_clock_time_source.h", |
| 204 "yuv_convert.cc", | 204 "yuv_convert.cc", |
| 205 "yuv_convert.h", | 205 "yuv_convert.h", |
| 206 ] | 206 ] |
| 207 | 207 |
| 208 allow_circular_includes_from = [] | 208 allow_circular_includes_from = [] |
| 209 defines = [] | 209 defines = [] |
| 210 public_deps = [] | 210 public_deps = [] |
| 211 deps = [ | 211 deps = [ |
| 212 "//skia", |
| 212 "//ui/events:events_base", | 213 "//ui/events:events_base", |
| 213 "//skia", | |
| 214 ] | 214 ] |
| 215 libs = [] | 215 libs = [] |
| 216 configs += [ | 216 configs += [ |
| 217 # This target uses the ALLOCATOR_SHIM define. | 217 # This target uses the ALLOCATOR_SHIM define. |
| 218 "//base/allocator:allocator_shim_define", | 218 "//base/allocator:allocator_shim_define", |
| 219 "//build/config:precompiled_headers", | 219 "//build/config:precompiled_headers", |
| 220 "//media:media_config", | 220 "//media:media_config", |
| 221 "//media:media_implementation", | 221 "//media:media_implementation", |
| 222 ] | 222 ] |
| 223 | 223 |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 "mock_filters.h", | 351 "mock_filters.h", |
| 352 "mock_media_log.cc", | 352 "mock_media_log.cc", |
| 353 "mock_media_log.h", | 353 "mock_media_log.h", |
| 354 "test_data_util.cc", | 354 "test_data_util.cc", |
| 355 "test_data_util.h", | 355 "test_data_util.h", |
| 356 "test_helpers.cc", | 356 "test_helpers.cc", |
| 357 "test_helpers.h", | 357 "test_helpers.h", |
| 358 ] | 358 ] |
| 359 configs += [ "//media:media_config" ] | 359 configs += [ "//media:media_config" ] |
| 360 deps = [ | 360 deps = [ |
| 361 "//media:shared_memory_support", |
| 361 "//testing/gmock", | 362 "//testing/gmock", |
| 362 "//media:shared_memory_support", | |
| 363 ] | 363 ] |
| 364 } | 364 } |
| 365 | 365 |
| 366 source_set("unittests") { | 366 source_set("unittests") { |
| 367 testonly = true | 367 testonly = true |
| 368 sources = [ | 368 sources = [ |
| 369 "audio_block_fifo_unittest.cc", | 369 "audio_block_fifo_unittest.cc", |
| 370 "audio_buffer_converter_unittest.cc", | 370 "audio_buffer_converter_unittest.cc", |
| 371 "audio_buffer_queue_unittest.cc", | 371 "audio_buffer_queue_unittest.cc", |
| 372 "audio_buffer_unittest.cc", | 372 "audio_buffer_unittest.cc", |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 534 if (is_posix) { | 534 if (is_posix) { |
| 535 yasm_flags += [ "-DELF" ] | 535 yasm_flags += [ "-DELF" ] |
| 536 if (current_cpu == "x64") { | 536 if (current_cpu == "x64") { |
| 537 # TODO(ajwong): Why isn't this true in mac? | 537 # TODO(ajwong): Why isn't this true in mac? |
| 538 yasm_flags += [ "-DPIC" ] | 538 yasm_flags += [ "-DPIC" ] |
| 539 } | 539 } |
| 540 } | 540 } |
| 541 } | 541 } |
| 542 } | 542 } |
| 543 } | 543 } |
| OLD | NEW |