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

Side by Side Diff: media/BUILD.gn

Issue 1439973004: [PoC] Reformat all BUILD.gn and *.gni files with new gn. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn-sort-deps
Patch Set: Rebase Created 5 years, 1 month 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
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/linux/pkg_config.gni") 8 import("//build/config/linux/pkg_config.gni")
9 import("//build/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after
660 660
661 # TODO(wolenetz): Fix size_t to int truncation in win64. 661 # TODO(wolenetz): Fix size_t to int truncation in win64.
662 # See http://crbug.com/171009 662 # See http://crbug.com/171009
663 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 663 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
664 664
665 deps = [ 665 deps = [
666 ":media", 666 ":media",
667 ":test_support", 667 ":test_support",
668 "//base/allocator", 668 "//base/allocator",
669 "//base/test:test_support", 669 "//base/test:test_support",
670 "//gpu:test_support",
670 "//gpu/command_buffer/common", 671 "//gpu/command_buffer/common",
671 "//gpu:test_support", 672 "//media/audio:test_support",
672 "//media/audio:unittests", 673 "//media/audio:unittests",
673 "//media/audio:test_support", 674 "//media/base:test_support",
674 "//media/base:unittests", 675 "//media/base:unittests",
675 "//media/base:test_support",
676 "//media/test:pipeline_integration_tests", 676 "//media/test:pipeline_integration_tests",
677 "//skia", # Direct dependency required to inherit config. 677 "//skia", # Direct dependency required to inherit config.
678 "//testing/gmock", 678 "//testing/gmock",
679 "//testing/gtest", 679 "//testing/gtest",
680 "//third_party/widevine/cdm:version_h", 680 "//third_party/widevine/cdm:version_h",
681 "//ui/gfx:test_support", 681 "//ui/gfx:test_support",
682 "//url", 682 "//url",
683 ] 683 ]
684 684
685 if (is_android) { 685 if (is_android) {
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
884 deps = [ 884 deps = [
885 "//base/test:test_support", 885 "//base/test:test_support",
886 "//media", 886 "//media",
887 "//media:test_support", 887 "//media:test_support",
888 "//media/audio:test_support", 888 "//media/audio:test_support",
889 "//media/base:test_support", 889 "//media/base:test_support",
890 "//media/test:pipeline_integration_tests", 890 "//media/test:pipeline_integration_tests",
891 "//testing/gmock", 891 "//testing/gmock",
892 "//testing/gtest", 892 "//testing/gtest",
893 "//third_party/ffmpeg", 893 "//third_party/ffmpeg",
894 "//ui/gfx:test_support",
894 "//ui/gfx/geometry", 895 "//ui/gfx/geometry",
895 "//ui/gfx:test_support",
896 ] 896 ]
897 } 897 }
898 } 898 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698