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

Side by Side Diff: samples/sample_extension/sample_extension.gypi

Issue 10387019: Add gyp build for sample-extension. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 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
« no previous file with comments | « runtime/dart-runtime.gyp ('k') | no next file » | 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) 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
3 # BSD-style license that can be found in the LICENSE file.
4
5 {
6 'variables': {
7 },
Bill Hesse 2012/05/08 11:17:01 Remove the variables section.
Mads Ager (google) 2012/05/08 11:23:30 Please do. :)
8 'targets': [
9 {
10 'target_name': 'sample_extension',
11 'type': 'shared_library',
12 'dependencies': [
13 'dart',
14 ],
15 'include_dirs': [
16 '../../runtime/include',
17 ],
18 'sources': [
19 'sample_extension.cc',
20 'sample_extension_dllmain_win.cc',
21 ],
22 'defines': [
23 'DART_SHARED_LIB',
24 ],
25 'conditions': [
26 ['OS=="win"', {
27 'msvs_settings': {
28 'VCLinkerTool': {
29 'AdditionalDependencies': [ 'dart.lib' ],
30 'AdditionalLibraryDirectories': [ '<(PRODUCT_DIR)' ],
31 },
32 },
33 }],
34 ['OS=="mac"', {
35 'xcode_settings': {
36 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ],
37 },
38 }],
39 ],
40 },
41 ],
42 }
43
OLDNEW
« no previous file with comments | « runtime/dart-runtime.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698