OLD | NEW |
1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
3 # BSD-style license that can be found in the LICENSE file. | 3 # BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 vars = { | 5 vars = { |
6 # The dart_root is the root of our sdk checkout. This is normally | 6 # The dart_root is the root of our sdk checkout. This is normally |
7 # simply sdk, but if using special gclient specs it can be different. | 7 # simply sdk, but if using special gclient specs it can be different. |
8 "dart_root": "sdk", | 8 "dart_root": "sdk", |
9 | 9 |
10 # We use mirrors of all github repos to guarantee reproducibility and | 10 # We use mirrors of all github repos to guarantee reproducibility and |
(...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
553 "--extract", | 553 "--extract", |
554 "-s", | 554 "-s", |
555 Var('dart_root') + "/third_party/clang.tar.gz.sha1", | 555 Var('dart_root') + "/third_party/clang.tar.gz.sha1", |
556 ], | 556 ], |
557 }, | 557 }, |
558 { | 558 { |
559 # Pull Debian wheezy sysroot for i386 Linux | 559 # Pull Debian wheezy sysroot for i386 Linux |
560 'name': 'sysroot_i386', | 560 'name': 'sysroot_i386', |
561 'pattern': '.', | 561 'pattern': '.', |
562 'action': ['python', 'sdk/build/linux/sysroot_scripts/install-sysroot.py', | 562 'action': ['python', 'sdk/build/linux/sysroot_scripts/install-sysroot.py', |
563 '--running-as-hook', --arch', 'i386'], | 563 '--running-as-hook', '--arch', 'i386'], |
564 }, | 564 }, |
565 { | 565 { |
566 # Pull Debian wheezy sysroot for amd64 Linux | 566 # Pull Debian wheezy sysroot for amd64 Linux |
567 'name': 'sysroot_amd64', | 567 'name': 'sysroot_amd64', |
568 'pattern': '.', | 568 'pattern': '.', |
569 'action': ['python', 'sdk/build/linux/sysroot_scripts/install-sysroot.py', | 569 'action': ['python', 'sdk/build/linux/sysroot_scripts/install-sysroot.py', |
570 '--running-as-hook', '--arch', 'amd64'], | 570 '--running-as-hook', '--arch', 'amd64'], |
571 }, | 571 }, |
572 { | 572 { |
573 # Pull clang if needed or requested via GYP_DEFINES. | 573 # Pull clang if needed or requested via GYP_DEFINES. |
574 'name': 'gn_clang', | 574 'name': 'gn_clang', |
575 'pattern': '.', | 575 'pattern': '.', |
576 'action': ['python', 'sdk/tools/clang/scripts/update.py', '--if-needed'], | 576 'action': ['python', 'sdk/tools/clang/scripts/update.py', '--if-needed'], |
577 }, | 577 }, |
578 { | 578 { |
579 # Update the Windows toolchain if necessary. | 579 # Update the Windows toolchain if necessary. |
580 'name': 'win_toolchain', | 580 'name': 'win_toolchain', |
581 'pattern': '.', | 581 'pattern': '.', |
582 'action': ['python', 'sdk/build/vs_toolchain.py', 'update'], | 582 'action': ['python', 'sdk/build/vs_toolchain.py', 'update'], |
583 }, | 583 }, |
584 { | 584 { |
585 "pattern": ".", | 585 "pattern": ".", |
586 "action": ["python", Var("dart_root") + "/tools/generate_buildfiles.py"], | 586 "action": ["python", Var("dart_root") + "/tools/generate_buildfiles.py"], |
587 }, | 587 }, |
588 ] | 588 ] |
OLD | NEW |