OLD | NEW |
1 # -*- python -*- | 1 # -*- python -*- |
2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
6 | 6 |
7 # READ THIS: | 7 # READ THIS: |
8 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure | 8 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure |
9 | 9 |
10 import socket | 10 import socket |
(...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
531 | 531 |
532 b_linux_arm_cross_compile = CreateBuilder( | 532 b_linux_arm_cross_compile = CreateBuilder( |
533 platform='linux', | 533 platform='linux', |
534 builder_name='linux_arm_cross_compile', | 534 builder_name='linux_arm_cross_compile', |
535 target='Release', | 535 target='Release', |
536 options=linux_targets, | 536 options=linux_targets, |
537 tests=[], | 537 tests=[], |
538 factory_properties={ | 538 factory_properties={ |
539 'build_url': chromium_linux_arm_archive, | 539 'build_url': chromium_linux_arm_archive, |
540 'gclient_env': { | 540 'gclient_env': { |
541 'AR': 'arm-linux-gnueabi-ar', | 541 'AR': 'arm-linux-gnueabihf-ar', |
542 'AS': 'arm-linux-gnueabi-as', | 542 'AS': 'arm-linux-gnueabihf-as', |
543 'CC': 'arm-linux-gnueabi-gcc', | 543 'CC': 'arm-linux-gnueabihf-gcc', |
544 'CC_host': 'gcc', | 544 'CC_host': 'gcc', |
545 'CXX': 'arm-linux-gnueabi-g++', | 545 'CXX': 'arm-linux-gnueabihf-g++', |
546 'CXX_host': 'g++', | 546 'CXX_host': 'g++', |
547 'GYP_DEFINES': 'target_arch=arm', | 547 'GYP_DEFINES': 'target_arch=arm arm_float_abi=hard', |
548 'RANLIB': 'arm-linux-gnueabi-ranlib', | 548 'RANLIB': 'arm-linux-gnueabihf-ranlib', |
549 }, | 549 }, |
550 'trigger': 'linux_arm', | 550 'trigger': 'linux_arm', |
551 }, | 551 }, |
552 goma=True, | 552 goma=True, |
553 slave_type='TrybotBuilder', | 553 slave_type='TrybotBuilder', |
554 ) | 554 ) |
555 | 555 |
556 b_linux_arm_tester = CreateBuilder( | 556 b_linux_arm_tester = CreateBuilder( |
557 platform='linux', | 557 platform='linux', |
558 builder_name='linux_arm_tester', | 558 builder_name='linux_arm_tester', |
(...skipping 1860 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2419 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 2419 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
2420 | 2420 |
2421 # Buildbot master url: | 2421 # Buildbot master url: |
2422 if ActiveMaster.is_production_host: | 2422 if ActiveMaster.is_production_host: |
2423 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium/' | 2423 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium/' |
2424 else: | 2424 else: |
2425 c['buildbotURL'] = 'http://%s:%d/' % ( | 2425 c['buildbotURL'] = 'http://%s:%d/' % ( |
2426 socket.getfqdn(), ActiveMaster.master_port) | 2426 socket.getfqdn(), ActiveMaster.master_port) |
2427 | 2427 |
2428 # vi: set ts=4 sts=2 sw=2 et: | 2428 # vi: set ts=4 sts=2 sw=2 et: |
OLD | NEW |