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

Side by Side Diff: build/gn_migration.gypi

Issue 1446453004: Adding third_party/openh264 build files for encoding (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed brettw comments, (use_openh264 = true again for trybots) Created 5 years 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 (c) 2015 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2015 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 file defines five targets that we are using to track the progress of the 5 # This file defines five targets that we are using to track the progress of the
6 # GYP->GN migration: 6 # GYP->GN migration:
7 # 7 #
8 # 'both_gn_and_gyp' lists what GN is currently capable of building and should 8 # 'both_gn_and_gyp' lists what GN is currently capable of building and should
9 # match the 'both_gn_and_gyp' target in //BUILD.gn. 9 # match the 'both_gn_and_gyp' target in //BUILD.gn.
10 # 10 #
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 '../skia/skia_tests.gyp:skia_unittests', 78 '../skia/skia_tests.gyp:skia_unittests',
79 '../sql/sql.gyp:sql_unittests', 79 '../sql/sql.gyp:sql_unittests',
80 '../sync/sync.gyp:sync_unit_tests', 80 '../sync/sync.gyp:sync_unit_tests',
81 '../testing/gmock.gyp:gmock_main', 81 '../testing/gmock.gyp:gmock_main',
82 '../third_party/WebKit/Source/platform/blink_platform_tests.gyp:blink_he ap_unittests', 82 '../third_party/WebKit/Source/platform/blink_platform_tests.gyp:blink_he ap_unittests',
83 '../third_party/WebKit/Source/platform/blink_platform_tests.gyp:blink_pl atform_unittests', 83 '../third_party/WebKit/Source/platform/blink_platform_tests.gyp:blink_pl atform_unittests',
84 '../third_party/WebKit/Source/web/web_tests.gyp:webkit_unit_tests', 84 '../third_party/WebKit/Source/web/web_tests.gyp:webkit_unit_tests',
85 '../third_party/WebKit/Source/wtf/wtf_tests.gyp:wtf_unittests', 85 '../third_party/WebKit/Source/wtf/wtf_tests.gyp:wtf_unittests',
86 '../third_party/leveldatabase/leveldatabase.gyp:env_chromium_unittests', 86 '../third_party/leveldatabase/leveldatabase.gyp:env_chromium_unittests',
87 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput_unit tests', 87 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput_unit tests',
88 '../third_party/openh264/testing/openh264_unittests.gyp:openh264_unittes ts',
88 '../third_party/smhasher/smhasher.gyp:pmurhash', 89 '../third_party/smhasher/smhasher.gyp:pmurhash',
89 '../tools/battor_agent/battor_agent.gyp:battor_agent', 90 '../tools/battor_agent/battor_agent.gyp:battor_agent',
90 '../tools/telemetry/telemetry.gyp:bitmaptools#host', 91 '../tools/telemetry/telemetry.gyp:bitmaptools#host',
91 '../ui/accessibility/accessibility.gyp:accessibility_unittests', 92 '../ui/accessibility/accessibility.gyp:accessibility_unittests',
92 '../ui/base/ui_base_tests.gyp:ui_base_unittests', 93 '../ui/base/ui_base_tests.gyp:ui_base_unittests',
93 '../ui/display/display.gyp:display_unittests', 94 '../ui/display/display.gyp:display_unittests',
94 '../ui/events/events.gyp:events_unittests', 95 '../ui/events/events.gyp:events_unittests',
95 '../ui/gfx/gfx_tests.gyp:gfx_unittests', 96 '../ui/gfx/gfx_tests.gyp:gfx_unittests',
96 '../ui/gl/gl_tests.gyp:gl_unittests', 97 '../ui/gl/gl_tests.gyp:gl_unittests',
97 '../ui/snapshot/snapshot.gyp:snapshot_unittests', 98 '../ui/snapshot/snapshot.gyp:snapshot_unittests',
(...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after
521 '../testing/gtest.gyp:gtest_main', 522 '../testing/gtest.gyp:gtest_main',
522 '../third_party/codesighs/codesighs.gyp:msdump2symdb', 523 '../third_party/codesighs/codesighs.gyp:msdump2symdb',
523 '../third_party/codesighs/codesighs.gyp:msmap2tsv', 524 '../third_party/codesighs/codesighs.gyp:msmap2tsv',
524 '../third_party/pdfium/samples/samples.gyp:pdfium_diff', 525 '../third_party/pdfium/samples/samples.gyp:pdfium_diff',
525 '../win8/win8.gyp:metro_viewer', 526 '../win8/win8.gyp:metro_viewer',
526 ], 527 ],
527 }], 528 }],
528 ['chromecast==1', { 529 ['chromecast==1', {
529 'dependencies': [ 530 'dependencies': [
530 '../chromecast/chromecast.gyp:cast_shell', 531 '../chromecast/chromecast.gyp:cast_shell',
531 ] 532 ],
532 }] 533 }],
534 ['use_openh264==1', {
535 'dependencies': [
536 '../third_party/openh264/openh264.gyp:openh264_common',
537 '../third_party/openh264/openh264.gyp:openh264_processing',
538 '../third_party/openh264/openh264.gyp:openh264_encoder',
539 '../third_party/openh264/openh264.gyp:openh264_decoder',
540 ],
541 }],
533 ], 542 ],
534 }, 543 },
535 { 544 {
536 'target_name': 'gyp_remaining', 545 'target_name': 'gyp_remaining',
537 'type': 'none', 546 'type': 'none',
538 'conditions': [ 547 'conditions': [
539 ['remoting==1', { 548 ['remoting==1', {
540 'dependencies': [ 549 'dependencies': [
541 '../remoting/app_remoting_webapp.gyp:ar_sample_app', # crbug.com/47 1916 550 '../remoting/app_remoting_webapp.gyp:ar_sample_app', # crbug.com/47 1916
542 ], 551 ],
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
794 ['OS=="android" and target_arch != "x64"', { 803 ['OS=="android" and target_arch != "x64"', {
795 'dependencies': [ 804 'dependencies': [
796 '../third_party/android_platform/relocation_packer.gyp:android_reloc ation_packer_unittests#host' 805 '../third_party/android_platform/relocation_packer.gyp:android_reloc ation_packer_unittests#host'
797 ], 806 ],
798 }], 807 }],
799 ], 808 ],
800 }, 809 },
801 ] 810 ]
802 } 811 }
803 812
OLDNEW
« no previous file with comments | « build/all.gyp ('k') | third_party/openh264/BUILD.gn » ('j') | third_party/openh264/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698