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

Unified Diff: src/tools/driver/driver.gyp

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: address comments Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/tools/driver/connection.cc ('k') | src/tools/driver/main.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/tools/driver/driver.gyp
diff --git a/src/tools/driver/driver.gyp b/src/tools/driver/driver.gyp
index fef8f7597610946b7ee2ac8f22d18d0696520699..630d2d841306f3c9eaf475acab1b6f3c7976b059 100644
--- a/src/tools/driver/driver.gyp
+++ b/src/tools/driver/driver.gyp
@@ -14,7 +14,7 @@
'type': 'static_library',
'toolsets': ['target'],
'dependencies': [
- '../../shared/shared.gyp:fletch_shared',
+ '../../shared/shared.gyp:dartino_shared',
],
'sources': [
'connection.cc',
@@ -25,39 +25,39 @@
],
},
{
- 'target_name': 'fletch',
+ 'target_name': 'dartino',
'type': 'executable',
'toolsets': ['target'],
'dependencies': [
'driver',
],
'defines': [
- 'FLETCHC_LIBRARY_ROOT="../../lib"',
+ 'DARTINOC_LIBRARY_ROOT="../../lib"',
# How many directories up is the root, used for getting full path to
# the .packages file for the compiler
- 'FLETCH_ROOT_DISTANCE=2',
- 'FLETCHC_PKG_FILE="pkg/fletchc/.packages"',
+ 'DARTINO_ROOT_DISTANCE=2',
+ 'DARTINOC_PKG_FILE="pkg/dartino_compiler/.packages"',
'DART_VM_NAME="dart"',
],
'sources': [
'main.cc',
],
},
- # The same as fletch, but with paths relative to the location in
+ # The same as dartino, but with paths relative to the location in
# the sdk.
{
- 'target_name': 'fletch_for_sdk',
+ 'target_name': 'dartino_for_sdk',
'type': 'executable',
'toolsets': ['target'],
'dependencies': [
'driver',
],
'defines': [
- 'FLETCHC_LIBRARY_ROOT="../internal/fletch_lib"',
+ 'DARTINOC_LIBRARY_ROOT="../internal/dartino_lib"',
# How many directories up is the root, used for getting full path to
# the .packages file for the compiler
- 'FLETCH_ROOT_DISTANCE=1',
- 'FLETCHC_PKG_FILE="internal/pkg/fletchc/.packages"',
+ 'DARTINO_ROOT_DISTANCE=1',
+ 'DARTINOC_PKG_FILE="internal/pkg/dartino_compiler/.packages"',
'DART_VM_NAME="../internal/dart"',
],
'sources': [
« no previous file with comments | « src/tools/driver/connection.cc ('k') | src/tools/driver/main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698