Chromium Code Reviews| 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 'io_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_gen.cc', | 7 'io_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_gen.cc', |
| 8 'json_cc_file': '<(SHARED_INTERMEDIATE_DIR)/json_gen.cc', | 8 'json_cc_file': '<(SHARED_INTERMEDIATE_DIR)/json_gen.cc', |
| 9 'uri_cc_file': '<(SHARED_INTERMEDIATE_DIR)/uri_gen.cc', | 9 'uri_cc_file': '<(SHARED_INTERMEDIATE_DIR)/uri_gen.cc', |
| 10 'utf8_cc_file': '<(SHARED_INTERMEDIATE_DIR)/utf8_gen.cc', | 10 'utf8_cc_file': '<(SHARED_INTERMEDIATE_DIR)/utf8_gen.cc', |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 209 'builtin.h', | 209 'builtin.h', |
| 210 ], | 210 ], |
| 211 'includes': [ | 211 'includes': [ |
| 212 'builtin_impl_sources.gypi', | 212 'builtin_impl_sources.gypi', |
| 213 '../platform/platform_sources.gypi', | 213 '../platform/platform_sources.gypi', |
| 214 ], | 214 ], |
| 215 'sources/': [ | 215 'sources/': [ |
| 216 ['exclude', '_test\\.(cc|h)$'], | 216 ['exclude', '_test\\.(cc|h)$'], |
| 217 ], | 217 ], |
| 218 'conditions': [ | 218 'conditions': [ |
| 219 ['OS=="win"', {'sources/' : [ | 219 ['OS=="win"', { |
| 220 ['exclude', 'fdutils.h'], | 220 'sources/' : [ |
| 221 ]}], | 221 ['exclude', 'fdutils.h'], |
| 222 ], | |
| 223 # TODO(antonm): fix the implementation. | |
|
Mads Ager (google)
2012/03/05 14:36:10
Could you expand this comment to be explicit about
antonm
2012/03/05 14:54:09
Done.
| |
| 224 'msvs_configuration_attributes': { | |
| 225 'CharacterSet': '0', | |
| 226 }, | |
| 227 }], | |
| 222 ['OS=="linux"', { | 228 ['OS=="linux"', { |
| 223 'link_settings': { | 229 'link_settings': { |
| 224 'libraries': [ | 230 'libraries': [ |
| 225 '-ldl', | 231 '-ldl', |
| 226 ], | 232 ], |
| 227 }, | 233 }, |
| 228 }], | 234 }], |
| 229 ], | 235 ], |
| 230 }, | 236 }, |
| 231 { | 237 { |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 424 ], | 430 ], |
| 425 'defines': [ | 431 'defines': [ |
| 426 'DART_SHARED_LIB', | 432 'DART_SHARED_LIB', |
| 427 ], | 433 ], |
| 428 }, | 434 }, |
| 429 ], | 435 ], |
| 430 }], | 436 }], |
| 431 ], | 437 ], |
| 432 } | 438 } |
| 433 | 439 |
| OLD | NEW |