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 1399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1418 'TARGET_BITS': 32, | 1418 'TARGET_BITS': 32, |
1419 }, | 1419 }, |
1420 'chromium_apply_config': ['webrtc_gn'], | 1420 'chromium_apply_config': ['webrtc_gn'], |
1421 'bot_type': 'builder', | 1421 'bot_type': 'builder', |
1422 'testing': {'platform': 'linux'}, | 1422 'testing': {'platform': 'linux'}, |
1423 }, | 1423 }, |
1424 }, | 1424 }, |
1425 }, | 1425 }, |
1426 }) | 1426 }) |
1427 | 1427 |
OLD | NEW |