Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(455)

Side by Side Diff: tools/utils/__init__.py

Issue 1649703002: Update project authors statements to Dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tools/testing/dart/fletch_warnings_suite.dart ('k') | tools/utils_test.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file 1 # Copyright (c) 2015, the Dartino 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 # This file contains a set of utilities functions used by other Python-based 5 # This file contains a set of utilities functions used by other Python-based
6 # scripts. Most of these utilities are imported from tools/utils.py in the Dart 6 # scripts. Most of these utilities are imported from tools/utils.py in the Dart
7 # SDK. 7 # SDK.
8 8
9 import imp 9 import imp
10 import os 10 import os
11 11
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 47
48 # Replace DART_DIR to get the right cwd for git commands. 48 # Replace DART_DIR to get the right cwd for git commands.
49 dart_utils.DART_DIR = os.path.abspath(os.path.join(__file__, '..', '..', '..')) 49 dart_utils.DART_DIR = os.path.abspath(os.path.join(__file__, '..', '..', '..'))
50 50
51 # Use the version file in the fletch repo. 51 # Use the version file in the fletch repo.
52 dart_utils.VERSION_FILE = os.path.join(dart_utils.DART_DIR, 'tools', 'VERSION') 52 dart_utils.VERSION_FILE = os.path.join(dart_utils.DART_DIR, 'tools', 'VERSION')
53 53
54 # Now that we have patched 'dart_utils', import it into our own scope. This 54 # Now that we have patched 'dart_utils', import it into our own scope. This
55 # also means that we export everything from that library. 55 # also means that we export everything from that library.
56 from dart_utils import * 56 from dart_utils import *
OLDNEW
« no previous file with comments | « tools/testing/dart/fletch_warnings_suite.dart ('k') | tools/utils_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698