OLD | NEW |
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 'variables': { | 6 'variables': { |
7 'gen_source_dir': '<(SHARED_INTERMEDIATE_DIR)', | 7 'gen_source_dir': '<(SHARED_INTERMEDIATE_DIR)', |
8 'libgen_in_cc_file': '../lib/libgen_in.cc', | 8 'libgen_in_cc_file': '../lib/libgen_in.cc', |
9 'builtin_in_cc_file': '../bin/builtin_in.cc', | 9 'builtin_in_cc_file': '../bin/builtin_in.cc', |
10 'async_cc_file': '<(gen_source_dir)/async_gen.cc', | 10 'async_cc_file': '<(gen_source_dir)/async_gen.cc', |
(...skipping 29 matching lines...) Expand all Loading... |
40 '../platform/platform_sources.gypi', | 40 '../platform/platform_sources.gypi', |
41 ], | 41 ], |
42 'sources/': [ | 42 'sources/': [ |
43 # Exclude all _test.[cc|h] files. | 43 # Exclude all _test.[cc|h] files. |
44 ['exclude', '_test\\.(cc|h)$'], | 44 ['exclude', '_test\\.(cc|h)$'], |
45 ], | 45 ], |
46 'include_dirs': [ | 46 'include_dirs': [ |
47 '..', | 47 '..', |
48 ], | 48 ], |
49 'conditions': [ | 49 'conditions': [ |
50 ['OS=="android"', { | |
51 'link_settings': { | |
52 'libraries': [ | |
53 '-lc', | |
54 ], | |
55 }, | |
56 }], | |
57 ['OS=="linux"', { | 50 ['OS=="linux"', { |
58 'link_settings': { | 51 'link_settings': { |
59 'libraries': [ | 52 'libraries': [ |
60 '-lpthread', | 53 '-lpthread', |
61 '-lrt', | 54 '-lrt', |
62 ], | 55 ], |
63 }, | 56 }, |
64 }], | 57 }], |
65 ['OS=="win"', { | 58 ['OS=="win"', { |
66 'sources/' : [ | 59 'sources/' : [ |
(...skipping 841 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
908 '--include', 'INTENTIONALLY_LEFT_BLANK', | 901 '--include', 'INTENTIONALLY_LEFT_BLANK', |
909 '--var_name', 'INTENTIONALLY_LEFT_BLANK_TOO', | 902 '--var_name', 'INTENTIONALLY_LEFT_BLANK_TOO', |
910 '<(snapshot_test_dart_file)', | 903 '<(snapshot_test_dart_file)', |
911 ], | 904 ], |
912 'message': 'Generating ''<(snapshot_test_dat_file)'' file.' | 905 'message': 'Generating ''<(snapshot_test_dat_file)'' file.' |
913 }, | 906 }, |
914 ] | 907 ] |
915 }, | 908 }, |
916 ] | 909 ] |
917 } | 910 } |
OLD | NEW |