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

Side by Side Diff: dart.gyp

Issue 10827197: Add samples gyp target to Dart project, that builds samples/sample_extension. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix copyright date. Created 8 years, 4 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 | Annotate | Revision Log
OLDNEW
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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'compiler', 8 'target_name': 'compiler',
9 'type': 'none', 9 'type': 'none',
10 'dependencies': [ 10 'dependencies': [
11 'compiler/dart-compiler.gyp:dart_analyzer', 11 'compiler/dart-compiler.gyp:dart_analyzer',
12 ], 12 ],
13 'actions': [] 13 'actions': []
14 }, 14 },
15 { 15 {
16 'target_name': 'runtime', 16 'target_name': 'runtime',
17 'type': 'none', 17 'type': 'none',
18 'dependencies': [ 18 'dependencies': [
19 'runtime/dart-runtime.gyp:dart', 19 'runtime/dart-runtime.gyp:dart',
20 'runtime/dart-runtime.gyp:run_vm_tests', 20 'runtime/dart-runtime.gyp:run_vm_tests',
21 'runtime/dart-runtime.gyp:process_test', 21 'runtime/dart-runtime.gyp:process_test',
22 'runtime/dart-runtime.gyp:test_extension', 22 'runtime/dart-runtime.gyp:test_extension',
23 ], 23 ],
24 }, 24 },
25 { 25 {
26 'target_name': 'samples',
ahe 2012/08/07 11:42:31 I think it would be nice if you added this to the
Bill Hesse 2012/08/07 12:23:19 Done.
27 'type': 'none',
28 'dependencies': [
29 'samples/samples.gyp:sample_extension',
30 ],
31 },
32 {
26 # Build the SDK. This target is separate from upload_sdk as the 33 # Build the SDK. This target is separate from upload_sdk as the
27 # editor needs to build the SDK without uploading it. 34 # editor needs to build the SDK without uploading it.
28 'target_name': 'create_sdk', 35 'target_name': 'create_sdk',
29 'type': 'none', 36 'type': 'none',
30 'dependencies': [ 37 'dependencies': [
31 'runtime/dart-runtime.gyp:dart', 38 'runtime/dart-runtime.gyp:dart',
32 'dart2js', 39 'dart2js',
33 ], 40 ],
34 'actions': [ 41 'actions': [
35 { 42 {
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 }, 110 },
104 { 111 {
105 'target_name': 'api_docs', 112 'target_name': 'api_docs',
106 'type': 'none', 113 'type': 'none',
107 'dependencies': [ 114 'dependencies': [
108 'utils/apidoc/apidoc.gyp:api_docs', 115 'utils/apidoc/apidoc.gyp:api_docs',
109 ], 116 ],
110 } 117 }
111 ], 118 ],
112 } 119 }
OLDNEW
« no previous file with comments | « no previous file | samples/sample_extension/sample_extension.gypi » ('j') | samples/sample_extension/sample_extension.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698