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

Side by Side Diff: webrtc/build/mb_config.pyl

Issue 2303673005: MB: Enable rtc_use_h264 for GYP builds for now. (Closed)
Patch Set: Created 4 years, 3 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) 2016 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 # FOR DETAILS ON THIS FILE SEE THE MAIN COPY IN //tools/mb/mb_config.pyl. 9 # FOR DETAILS ON THIS FILE SEE THE MAIN COPY IN //tools/mb/mb_config.pyl.
10 # This is configuration for standalone WebRTC bots. It is used to keep the bot 10 # This is configuration for standalone WebRTC bots. It is used to keep the bot
(...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after
426 'goma': { 426 'goma': {
427 # The MB code will properly escape goma_dir if necessary in the GYP 427 # The MB code will properly escape goma_dir if necessary in the GYP
428 # code path; the GN code path needs no escaping. 428 # code path; the GN code path needs no escaping.
429 'gn_args': 'use_goma=true', 429 'gn_args': 'use_goma=true',
430 'gyp_defines': 'use_goma=1', 430 'gyp_defines': 'use_goma=1',
431 }, 431 },
432 432
433 'gyp': {'type': 'gyp'}, 433 'gyp': {'type': 'gyp'},
434 434
435 'gyp_limited_support_build': { 435 'gyp_limited_support_build': {
436 'gyp_defines': 'include_examples=0 include_tests=0 rtc_use_h264=0' 436 'gyp_defines': 'include_examples=0 include_tests=0'
437 }, 437 },
438 438
439 'ios': { 439 'ios': {
440 'gn_args': 'target_os="ios"', 440 'gn_args': 'target_os="ios"',
441 'gyp_defines': 'OS=ios', 441 'gyp_defines': 'OS=ios',
442 }, 442 },
443 443
444 'lsan': { 444 'lsan': {
445 'gn_args': 'is_lsan=true', 445 'gn_args': 'is_lsan=true',
446 'gyp_defines': 'lsan=1', 446 'gyp_defines': 'lsan=1',
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
532 'gn_args': 'target_cpu="x64"', 532 'gn_args': 'target_cpu="x64"',
533 'gyp_defines': 'target_arch=x64', 533 'gyp_defines': 'target_arch=x64',
534 }, 534 },
535 535
536 'x86': { 536 'x86': {
537 'gn_args': 'target_cpu="x86"', 537 'gn_args': 'target_cpu="x86"',
538 'gyp_defines': 'target_arch=ia32', 538 'gyp_defines': 'target_arch=ia32',
539 }, 539 },
540 }, 540 },
541 } 541 }
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