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

Side by Side Diff: BUILD.gn

Issue 1446453004: Adding third_party/openh264 build files for encoding (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase with master 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
« no previous file with comments | « no previous file | build/all.gyp » ('j') | content/browser/media/openh264_unittests.cc » ('J')
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
(...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after
579 ] 579 ]
580 } else if (!is_android && !is_ios) { 580 } else if (!is_android && !is_ios) {
581 deps += [ 581 deps += [
582 "//breakpad:symupload($host_toolchain)", 582 "//breakpad:symupload($host_toolchain)",
583 "//media/cast:cast_unittests", 583 "//media/cast:cast_unittests",
584 ] 584 ]
585 } 585 }
586 if (is_chromecast) { 586 if (is_chromecast) {
587 deps += [ "//chromecast:cast_shell" ] 587 deps += [ "//chromecast:cast_shell" ]
588 } 588 }
589
590 if (use_openh264) {
591 deps += [
592 "//third_party/openh264:openh264_common",
593 "//third_party/openh264:openh264_processing",
594 "//third_party/openh264:openh264_encoder",
595 "//third_party/openh264:openh264_decoder",
596 ]
597 }
589 } 598 }
590 599
591 group("gn_only") { 600 group("gn_only") {
592 testonly = true 601 testonly = true
593 602
594 deps = [] 603 deps = []
595 604
596 if (!is_ios && !is_chromecast) { 605 if (!is_ios && !is_chromecast) {
597 deps += [ "//mandoline:all" ] 606 deps += [ "//mandoline:all" ]
598 } 607 }
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
840 if (target_cpu == "x86") { 849 if (target_cpu == "x86") {
841 deps += [ 850 deps += [
842 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 851 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009
843 ] 852 ]
844 } 853 }
845 } else { 854 } else {
846 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] 855 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ]
847 } 856 }
848 } 857 }
849 } 858 }
OLDNEW
« no previous file with comments | « no previous file | build/all.gyp » ('j') | content/browser/media/openh264_unittests.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698