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

Side by Side Diff: fletch.gyp

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: address comments 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 | « embedded.fletch-settings ('k') | include/dartino_api.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # BSD-style license that can be found in the LICENSE.md file.
4
5 {
6 'targets': [
7 {
8 'target_name': 'fletch-vm',
9 'type': 'none',
10 'dependencies': [
11 'src/vm/vm.gyp:fletch-vm',
12 ],
13 },
14 {
15 'target_name': 'c_test_library',
16 'type': 'none',
17 'dependencies': [
18 'src/vm/vm.gyp:ffi_test_library',
19 'src/vm/vm.gyp:ffi_test_local_library',
20 ],
21 },
22 {
23 'target_name': 'mdns_extension_lib',
24 'type': 'none',
25 'dependencies': [
26 'src/pkg/mdns/mdns.gyp:mdns_extension_lib',
27 ],
28 },
29 {
30 'target_name': 'power_management_extension_lib',
31 'type': 'none',
32 'dependencies': [
33 'src/pkg/power_management/power_management.gyp:'
34 'power_management_extension_lib',
35 ],
36 },
37 {
38 'target_name': 'mbedtls_lib',
39 'type': 'none',
40 'dependencies': [
41 'src/pkg/mbedtls/mbedtls.gyp:mbedtls',
42 ],
43 },
44 {
45 'target_name': 'natives_json',
46 'type': 'none',
47 'toolsets': ['host'],
48 'dependencies': [
49 'src/shared/shared.gyp:natives_json',
50 ],
51 },
52 {
53 'target_name': 'flashtool',
54 'type': 'none',
55 'toolsets': ['target'],
56 'dependencies': [
57 'src/tools/flashtool/flashtool.gyp:flashtool',
58 ],
59 },
60 {
61 'target_name': 'toplevel_fletch',
62 'type': 'none',
63 'toolsets': ['target'],
64 'dependencies': [
65 'src/tools/driver/driver.gyp:fletch',
66 'src/tools/driver/driver.gyp:fletch_for_sdk',
67 'copy_dart#host',
68 ],
69 },
70 {
71 # C based test executables. See also tests/cc_tests/README.md.
72 'target_name': 'cc_tests',
73 'type': 'none',
74 'toolsets': ['target'],
75 'dependencies': [
76 'src/shared/shared.gyp:shared_cc_tests',
77 'src/vm/vm.gyp:vm_cc_tests',
78 ],
79 },
80 {
81 'target_name': 'multiprogram_cc_test',
82 'type': 'none',
83 'toolsets': ['target'],
84 'dependencies': [
85 'src/vm/vm.gyp:multiprogram_cc_test',
86 ],
87 },
88 {
89 'target_name': 'copy_dart',
90 'type': 'none',
91 'toolsets': ['host'],
92 'copies': [
93 {
94 'destination': '<(PRODUCT_DIR)',
95 'files': [
96 'third_party/bin/<(OS)/dart<(EXECUTABLE_SUFFIX)',
97 ],
98 },
99 ],
100 },
101 ],
102 }
OLDNEW
« no previous file with comments | « embedded.fletch-settings ('k') | include/dartino_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698