| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |