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

Side by Side Diff: fletch.gyp

Issue 1413713011: Revert "Extend the mDNS package with a native extension used on Mac OS" (Closed) Base URL: git@github.com:dart-lang/fletch.git@master
Patch Set: Created 5 years, 1 month 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 | « build.ninja ('k') | pkg/mdns/lib/mdns.dart » ('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 Fletch 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.md file. 3 # BSD-style license that can be found in the LICENSE.md file.
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'fletch-vm', 8 'target_name': 'fletch-vm',
9 'type': 'none', 9 'type': 'none',
10 'dependencies': [ 10 'dependencies': [
11 'src/vm/vm.gyp:fletch-vm', 11 'src/vm/vm.gyp:fletch-vm',
12 ], 12 ],
13 }, 13 },
14 { 14 {
15 'target_name': 'c_test_library', 15 'target_name': 'c_test_library',
16 'type': 'none', 16 'type': 'none',
17 'dependencies': [ 17 'dependencies': [
18 'src/vm/vm.gyp:ffi_test_library', 18 'src/vm/vm.gyp:ffi_test_library',
19 ], 19 ],
20 }, 20 },
21 { 21 {
22 'target_name': 'mdns_extension_lib',
23 'type': 'none',
24 'dependencies': [
25 'src/pkg/mdns/mdns.gyp:mdns_extension_lib',
26 ],
27 },
28 {
29 'target_name': 'natives_json', 22 'target_name': 'natives_json',
30 'type': 'none', 23 'type': 'none',
31 'toolsets': ['host'], 24 'toolsets': ['host'],
32 'dependencies': [ 25 'dependencies': [
33 'src/shared/shared.gyp:natives_json', 26 'src/shared/shared.gyp:natives_json',
34 ], 27 ],
35 }, 28 },
36 { 29 {
37 'target_name': 'flashtool', 30 'target_name': 'flashtool',
38 'type': 'none', 31 'type': 'none',
(...skipping 30 matching lines...) Expand all
69 { 62 {
70 'destination': '<(PRODUCT_DIR)', 63 'destination': '<(PRODUCT_DIR)',
71 'files': [ 64 'files': [
72 'third_party/bin/<(OS)/dart<(EXECUTABLE_SUFFIX)', 65 'third_party/bin/<(OS)/dart<(EXECUTABLE_SUFFIX)',
73 ], 66 ],
74 }, 67 },
75 ], 68 ],
76 }, 69 },
77 ], 70 ],
78 } 71 }
OLDNEW
« no previous file with comments | « build.ninja ('k') | pkg/mdns/lib/mdns.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698