| 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': '<(LIB_DIR)', | 7 'gen_source_dir': '<(LIB_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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 ['exclude', '_test\\.(cc|h)$'], | 47 ['exclude', '_test\\.(cc|h)$'], |
| 48 ], | 48 ], |
| 49 'include_dirs': [ | 49 'include_dirs': [ |
| 50 '..', | 50 '..', |
| 51 ], | 51 ], |
| 52 'conditions': [ | 52 'conditions': [ |
| 53 ['OS=="android"', { | 53 ['OS=="android"', { |
| 54 'link_settings': { | 54 'link_settings': { |
| 55 'libraries': [ | 55 'libraries': [ |
| 56 '-lc', | 56 '-lc', |
| 57 '-lpthread', | |
| 58 ], | 57 ], |
| 59 }, | 58 }, |
| 60 }], | 59 }], |
| 61 ['OS=="linux"', { | 60 ['OS=="linux"', { |
| 62 'link_settings': { | 61 'link_settings': { |
| 63 'libraries': [ | 62 'libraries': [ |
| 64 '-lpthread', | 63 '-lpthread', |
| 65 '-lrt', | 64 '-lrt', |
| 66 ], | 65 ], |
| 67 }, | 66 }, |
| (...skipping 942 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1010 '--include', 'INTENTIONALLY_LEFT_BLANK', | 1009 '--include', 'INTENTIONALLY_LEFT_BLANK', |
| 1011 '--var_name', 'INTENTIONALLY_LEFT_BLANK_TOO', | 1010 '--var_name', 'INTENTIONALLY_LEFT_BLANK_TOO', |
| 1012 '<(snapshot_test_dart_file)', | 1011 '<(snapshot_test_dart_file)', |
| 1013 ], | 1012 ], |
| 1014 'message': 'Generating ''<(snapshot_test_dat_file)'' file.' | 1013 'message': 'Generating ''<(snapshot_test_dat_file)'' file.' |
| 1015 }, | 1014 }, |
| 1016 ] | 1015 ] |
| 1017 }, | 1016 }, |
| 1018 ] | 1017 ] |
| 1019 } | 1018 } |
| OLD | NEW |