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

Unified Diff: fletch.gyp

Issue 1209033003: Work in progres, please take a look and give early feedback if this is the way we want to structure… (Closed) Base URL: git@github.com:dart-lang/fletch.git@master
Patch Set: address comments Created 5 years, 6 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 | « no previous file | lib/ffi/ffi.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: fletch.gyp
diff --git a/fletch.gyp b/fletch.gyp
index 21c04aa0a2ae714531635a2e61e982e9507909a4..590aa3dc51cc6a41bd86efc344a5baca8ff00e75 100644
--- a/fletch.gyp
+++ b/fletch.gyp
@@ -211,64 +211,6 @@
],
},
{
- 'target_name': 'run_myapi_test',
- # Note: this target_name needs to be different from its dependency.
- # This is due to the ninja GYP generator which doesn't generate unique
- # names.
- 'type': 'none',
- 'dependencies': [
- 'src/vm/vm.gyp:fletch-vm',
- 'copy_dart#host',
- 'samples/myapi/myapi.gyp:myapi_test',
- 'copy_asan',
- ],
- 'actions': [
- {
- 'action_name': 'generate_myapi_snapshot',
- 'command': [
- '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
- '-p',
- '<(PRODUCT_DIR)/../../package/',
- '<(PRODUCT_DIR)/../../pkg/fletchc/lib/fletchc.dart',
- 'samples/myapi/generated/myapi_service_impl.dart',
- ],
- 'inputs': [
- '<(mac_asan_dylib)',
- '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
- '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)fletch-vm<(EXECUTABLE_SUFFIX)',
- # TODO(ahe): Also depend on .dart files in the core libraries.
- 'samples/myapi/myapi_impl.dart',
- 'samples/myapi/generated/dart/myapi_service.dart',
- ],
- 'outputs': [
- '<(SHARED_INTERMEDIATE_DIR)/myapi.snapshot',
- ],
- 'action': [
- '<@(_command)',
- '--out',
- '<(SHARED_INTERMEDIATE_DIR)/myapi.snapshot',
- ],
- },
- {
- 'action_name': 'run_myapi_test',
- 'inputs': [
- '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)'
- 'myapi_test'
- '<(EXECUTABLE_SUFFIX)',
- '<(SHARED_INTERMEDIATE_DIR)/myapi.snapshot',
- ],
- 'outputs': [
- '<(PRODUCT_DIR)/test_outcomes/myapi_test.pass',
- ],
- 'action': [
- "bash", "-c",
- "<(_inputs) && LANG=POSIX date '+Test passed on %+' > "
- "<(_outputs)",
- ],
- },
- ],
- },
- {
'target_name': 'run_todomvc_sample',
# Note: this target_name needs to be different from its dependency.
# This is due to the ninja GYP generator which doesn't generate unique
« no previous file with comments | « no previous file | lib/ffi/ffi.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698