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

Side by Side Diff: build/all.gyp

Issue 1446453004: Adding third_party/openh264 build files for encoding (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed torbjorng's comments 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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'variables': { 6 'variables': {
7 # A hook that can be overridden in other repositories to add additional 7 # A hook that can be overridden in other repositories to add additional
8 # compilation targets to 'All'. 8 # compilation targets to 'All'.
9 'app_targets%': [], 9 'app_targets%': [],
10 # For Android-specific targets. 10 # For Android-specific targets.
11 'android_app_targets%': [], 11 'android_app_targets%': [],
12 }, 12 },
13 'includes': [
14 '../third_party/openh264/openh264_args.gypi',
15 ],
13 'targets': [ 16 'targets': [
14 { 17 {
15 'target_name': 'All', 18 'target_name': 'All',
16 'type': 'none', 19 'type': 'none',
17 'xcode_create_dependents_test_runner': 1, 20 'xcode_create_dependents_test_runner': 1,
18 'dependencies': [ 21 'dependencies': [
19 '<@(app_targets)', 22 '<@(app_targets)',
20 'some.gyp:*', 23 'some.gyp:*',
21 '../base/base.gyp:*', 24 '../base/base.gyp:*',
22 '../components/components.gyp:*', 25 '../components/components.gyp:*',
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 ['(chromeos==1 or OS=="linux" or OS=="win" or OS=="mac") and chromecast= =0', { 283 ['(chromeos==1 or OS=="linux" or OS=="win" or OS=="mac") and chromecast= =0', {
281 'dependencies': [ 284 'dependencies': [
282 '../extensions/shell/app_shell.gyp:*', 285 '../extensions/shell/app_shell.gyp:*',
283 ], 286 ],
284 }], 287 }],
285 ['envoy==1', { 288 ['envoy==1', {
286 'dependencies': [ 289 'dependencies': [
287 '../envoy/envoy.gyp:*', 290 '../envoy/envoy.gyp:*',
288 ], 291 ],
289 }], 292 }],
293 ['use_openh264==1', {
294 'dependencies': [
295 '../third_party/openh264/openh264.gyp:*',
296 ],
297 }],
290 ], 298 ],
291 }, # target_name: All 299 }, # target_name: All
292 { 300 {
293 'target_name': 'All_syzygy', 301 'target_name': 'All_syzygy',
294 'type': 'none', 302 'type': 'none',
295 'conditions': [ 303 'conditions': [
296 ['OS=="win" and fastbuild==0 and target_arch=="ia32" and ' 304 ['OS=="win" and fastbuild==0 and target_arch=="ia32" and '
297 '(syzyasan==1 or syzygy_optimize==1)', { 305 '(syzyasan==1 or syzygy_optimize==1)', {
298 'dependencies': [ 306 'dependencies': [
299 '../chrome/installer/mini_installer_syzygy.gyp:*', 307 '../chrome/installer/mini_installer_syzygy.gyp:*',
(...skipping 1131 matching lines...) Expand 10 before | Expand all | Expand 10 after
1431 'dependencies': [ 1439 'dependencies': [
1432 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', 1440 '../ui/views/examples/examples.gyp:views_examples_with_content_exe',
1433 '../ui/views/views.gyp:views', 1441 '../ui/views/views.gyp:views',
1434 '../ui/views/views.gyp:views_unittests', 1442 '../ui/views/views.gyp:views_unittests',
1435 ], 1443 ],
1436 }, # target_name: macviews_builder 1444 }, # target_name: macviews_builder
1437 ], # targets 1445 ], # targets
1438 }], # os=='mac' and toolkit_views==1 1446 }], # os=='mac' and toolkit_views==1
1439 ], # conditions 1447 ], # conditions
1440 } 1448 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | build/gn_migration.gypi » ('j') | content/browser/media/openh264_unittests.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698