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

Side by Side Diff: BUILD.gn

Issue 1297583004: make use of media_use_ffmpeg in BUILD.gn (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 # This is the root build file for GN. GN will start processing by loading this 5 # This is the root build file for GN. GN will start processing by loading this
6 # file, and recursively load all dependencies until all dependencies are either 6 # file, and recursively load all dependencies until all dependencies are either
7 # resolved or known not to exist (which will cause the build to fail). So if 7 # resolved or known not to exist (which will cause the build to fail). So if
8 # you add a new build file, there must be some path of dependencies from this 8 # you add a new build file, there must be some path of dependencies from this
9 # file to your new one or GN won't know about it. 9 # file to your new one or GN won't know about it.
10 10
11 import("//build/config/crypto.gni") 11 import("//build/config/crypto.gni")
12 import("//build/config/features.gni") 12 import("//build/config/features.gni")
13 import("//build/config/ui.gni") 13 import("//build/config/ui.gni")
14 import("//build/module_args/v8.gni") 14 import("//build/module_args/v8.gni")
15 import("//media/media_options.gni")
15 16
16 if (is_android) { 17 if (is_android) {
17 import("//build/config/android/config.gni") 18 import("//build/config/android/config.gni")
18 } 19 }
19 20
20 declare_args() { 21 declare_args() {
21 # A list of extra dependencies to add to the root target. This allows a 22 # A list of extra dependencies to add to the root target. This allows a
22 # checkout to add additional targets without explicitly changing any checked- 23 # checkout to add additional targets without explicitly changing any checked-
23 # in files. 24 # in files.
24 root_extra_deps = [] 25 root_extra_deps = []
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 "//courgette:courgette_unittests", 384 "//courgette:courgette_unittests",
384 "//device:device_unittests", 385 "//device:device_unittests",
385 "//gin:gin_shell", 386 "//gin:gin_shell",
386 "//gin:gin_unittests", 387 "//gin:gin_unittests",
387 "//google_apis:google_apis_unittests", 388 "//google_apis:google_apis_unittests",
388 "//google_apis/gcm:mcs_probe", 389 "//google_apis/gcm:mcs_probe",
389 "//gpu:angle_unittests", 390 "//gpu:angle_unittests",
390 "//gpu:gpu_perftests", 391 "//gpu:gpu_perftests",
391 "//gpu:gl_tests", 392 "//gpu:gl_tests",
392 "//ipc:ipc_perftests", 393 "//ipc:ipc_perftests",
393 "//media:ffmpeg_regression_tests", # TODO(GYP) this should be conditional on media_use_ffmpeg
394 "//media:media_perftests", 394 "//media:media_perftests",
395 "//media/cast:generate_barcode_video", 395 "//media/cast:generate_barcode_video",
396 "//media/cast:generate_timecode_audio", 396 "//media/cast:generate_timecode_audio",
397 "//net:crash_cache", 397 "//net:crash_cache",
398 "//net:crl_set_dump", 398 "//net:crl_set_dump",
399 "//net:dns_fuzz_stub", 399 "//net:dns_fuzz_stub",
400 "//net:dump_cache", 400 "//net:dump_cache",
401 "//net:gdig", 401 "//net:gdig",
402 "//net:get_server_time", 402 "//net:get_server_time",
403 "//net:net_watcher", # TODO(GYP): This should be conditional on use_v8_in _net 403 "//net:net_watcher", # TODO(GYP): This should be conditional on use_v8_in _net
(...skipping 15 matching lines...) Expand all
419 } 419 }
420 420
421 if (enable_nacl) { 421 if (enable_nacl) {
422 deps += [ "//components/nacl:nacl_loader_unittests" ] 422 deps += [ "//components/nacl:nacl_loader_unittests" ]
423 } 423 }
424 424
425 if (enable_nacl && enable_remoting) { 425 if (enable_nacl && enable_remoting) {
426 deps += [ "//remoting:remoting_key_tester" ] 426 deps += [ "//remoting:remoting_key_tester" ]
427 } 427 }
428 428
429 if (media_use_ffmpeg) {
430 deps += [ "//media:ffmpeg_regression_tests" ]
431 }
432
429 if (use_ash) { 433 if (use_ash) {
430 deps += [ 434 deps += [
431 "//ash:ash_shell", 435 "//ash:ash_shell",
432 "//ash:ash_unittests", 436 "//ash:ash_unittests",
433 ] 437 ]
434 } 438 }
435 439
436 if (use_aura) { 440 if (use_aura) {
437 deps += [ 441 deps += [
438 "//ui/aura:aura_unittests", 442 "//ui/aura:aura_unittests",
(...skipping 491 matching lines...) Expand 10 before | Expand all | Expand 10 after
930 "//ui/views:views_unittests", # TooltipControllerTest failures 934 "//ui/views:views_unittests", # TooltipControllerTest failures
931 "//ui/wm:wm_unittests", # PASSES 4/21/2015 935 "//ui/wm:wm_unittests", # PASSES 4/21/2015
932 "//url:url_unittests", # PASSES 4/17/2015 936 "//url:url_unittests", # PASSES 4/17/2015
933 937
934 # TODO(GYP) nacl_integration 938 # TODO(GYP) nacl_integration
935 # TODO(GYP) telemetry_perf_unittests 939 # TODO(GYP) telemetry_perf_unittests
936 # TODO(GYP) telemetry_unittests 940 # TODO(GYP) telemetry_unittests
937 ] 941 ]
938 } 942 }
939 } 943 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698