| 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 | 8 |
| 9 'io_cc_file': '<(gen_source_dir)/io_gen.cc', | 9 'io_cc_file': '<(gen_source_dir)/io_gen.cc', |
| 10 'io_patch_cc_file': '<(gen_source_dir)/io_patch_gen.cc', | 10 'io_patch_cc_file': '<(gen_source_dir)/io_patch_gen.cc', |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 # enabled. That should be addressed using -A | 197 # enabled. That should be addressed using -A |
| 198 # versions of functions and adding necessary conversions. | 198 # versions of functions and adding necessary conversions. |
| 199 'configurations': { | 199 'configurations': { |
| 200 'Common_Base': { | 200 'Common_Base': { |
| 201 'msvs_configuration_attributes': { | 201 'msvs_configuration_attributes': { |
| 202 'CharacterSet': '0', | 202 'CharacterSet': '0', |
| 203 }, | 203 }, |
| 204 }, | 204 }, |
| 205 }, | 205 }, |
| 206 }], | 206 }], |
| 207 ['OS=="mac"', { |
| 208 'link_settings': { |
| 209 'libraries': [ |
| 210 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', |
| 211 '$(SDKROOT)/System/Library/Frameworks/CoreServices.framework', |
| 212 ], |
| 213 }, |
| 214 }], |
| 207 ], | 215 ], |
| 208 'configurations': { | 216 'configurations': { |
| 209 'Dart_Android_Base': { | 217 'Dart_Android_Base': { |
| 210 'target_conditions': [ | 218 'target_conditions': [ |
| 211 ['_toolset=="target"', { | 219 ['_toolset=="target"', { |
| 212 'defines': [ | 220 'defines': [ |
| 213 # Needed for sources outside of nss that include pr and ssl | 221 # Needed for sources outside of nss that include pr and ssl |
| 214 # header files. | 222 # header files. |
| 215 'MDCPUCFG="md/_linux.cfg"', | 223 'MDCPUCFG="md/_linux.cfg"', |
| 216 ], | 224 ], |
| (...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 583 }], | 591 }], |
| 584 ['OS=="linux"', { | 592 ['OS=="linux"', { |
| 585 'cflags': [ | 593 'cflags': [ |
| 586 '-fPIC', | 594 '-fPIC', |
| 587 ], | 595 ], |
| 588 }], | 596 }], |
| 589 ], | 597 ], |
| 590 }, | 598 }, |
| 591 ], | 599 ], |
| 592 } | 600 } |
| OLD | NEW |