| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 # Contains the bulk of the WebRTC builder configurations so they can be reused | 5 # Contains the bulk of the WebRTC builder configurations so they can be reused |
| 6 # from multiple recipes. | 6 # from multiple recipes. |
| 7 | 7 |
| 8 from recipe_engine.types import freeze | 8 from infra.libs.infra_types import freeze |
| 9 | 9 |
| 10 RECIPE_CONFIGS = freeze({ | 10 RECIPE_CONFIGS = freeze({ |
| 11 'webrtc': { | 11 'webrtc': { |
| 12 'chromium_config': 'webrtc_standalone', | 12 'chromium_config': 'webrtc_standalone', |
| 13 'gclient_config': 'webrtc', | 13 'gclient_config': 'webrtc', |
| 14 'test_suite': 'webrtc', | 14 'test_suite': 'webrtc', |
| 15 }, | 15 }, |
| 16 'webrtc_baremetal': { | 16 'webrtc_baremetal': { |
| 17 'chromium_config': 'webrtc_standalone', | 17 'chromium_config': 'webrtc_standalone', |
| 18 'gclient_config': 'webrtc', | 18 'gclient_config': 'webrtc', |
| (...skipping 1439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1458 'TARGET_BITS': 32, | 1458 'TARGET_BITS': 32, |
| 1459 }, | 1459 }, |
| 1460 'chromium_apply_config': ['webrtc_gn'], | 1460 'chromium_apply_config': ['webrtc_gn'], |
| 1461 'bot_type': 'builder', | 1461 'bot_type': 'builder', |
| 1462 'testing': {'platform': 'linux'}, | 1462 'testing': {'platform': 'linux'}, |
| 1463 }, | 1463 }, |
| 1464 }, | 1464 }, |
| 1465 }, | 1465 }, |
| 1466 }) | 1466 }) |
| 1467 | 1467 |
| OLD | NEW |