Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(187)

Side by Side Diff: media/base/BUILD.gn

Issue 1912923002: Add media_features deps in media.gyp and media/base/BUILD.gn (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | media/media.gyp » ('j') | media/media.gyp » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 "yuv_convert.cc", 231 "yuv_convert.cc",
232 "yuv_convert.h", 232 "yuv_convert.h",
233 ] 233 ]
234 234
235 allow_circular_includes_from = [] 235 allow_circular_includes_from = []
236 defines = [] 236 defines = []
237 public_deps = [] 237 public_deps = []
238 deps = [ 238 deps = [
239 "//base/third_party/dynamic_annotations:dynamic_annotations", 239 "//base/third_party/dynamic_annotations:dynamic_annotations",
240 "//gpu", 240 "//gpu",
241 "//media:media_features",
241 "//media:shared_memory_support", 242 "//media:shared_memory_support",
242 "//skia", 243 "//skia",
243 "//ui/events:events_base", 244 "//ui/events:events_base",
244 "//url:url", 245 "//url:url",
245 ] 246 ]
246 libs = [] 247 libs = []
247 configs += [ 248 configs += [
248 # This target uses the ALLOCATOR_SHIM define. 249 # This target uses the ALLOCATOR_SHIM define.
249 "//base/allocator:allocator_shim_define", 250 "//base/allocator:allocator_shim_define",
250 "//build/config:precompiled_headers", 251 "//build/config:precompiled_headers",
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
377 "mock_media_log.cc", 378 "mock_media_log.cc",
378 "mock_media_log.h", 379 "mock_media_log.h",
379 "test_data_util.cc", 380 "test_data_util.cc",
380 "test_data_util.h", 381 "test_data_util.h",
381 "test_helpers.cc", 382 "test_helpers.cc",
382 "test_helpers.h", 383 "test_helpers.h",
383 "test_random.h", 384 "test_random.h",
384 ] 385 ]
385 configs += [ "//media:media_config" ] 386 configs += [ "//media:media_config" ]
386 deps = [ 387 deps = [
388 "//media:media_features",
387 "//media:shared_memory_support", 389 "//media:shared_memory_support",
388 "//testing/gmock", 390 "//testing/gmock",
389 ] 391 ]
390 } 392 }
391 393
392 source_set("unittests") { 394 source_set("unittests") {
393 testonly = true 395 testonly = true
394 sources = [ 396 sources = [
395 "audio_block_fifo_unittest.cc", 397 "audio_block_fifo_unittest.cc",
396 "audio_buffer_converter_unittest.cc", 398 "audio_buffer_converter_unittest.cc",
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
580 582
581 fuzzer_test("media_container_names_fuzzer") { 583 fuzzer_test("media_container_names_fuzzer") {
582 sources = [ 584 sources = [
583 "container_names_fuzzertest.cc", 585 "container_names_fuzzertest.cc",
584 ] 586 ]
585 deps = [ 587 deps = [
586 "//base", 588 "//base",
587 "//media", 589 "//media",
588 ] 590 ]
589 } 591 }
OLDNEW
« no previous file with comments | « no previous file | media/media.gyp » ('j') | media/media.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698