| OLD | NEW |
| 1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 the V8 project authors. All rights reserved. |
| 2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
| 3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
| 4 # met: | 4 # met: |
| 5 # | 5 # |
| 6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
| 7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
| 8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
| 9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
| 10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 # but don't want or need a debug version of V8. This should produce | 96 # but don't want or need a debug version of V8. This should produce |
| 97 # near-release speeds. | 97 # near-release speeds. |
| 98 'v8_optimized_debug%': 0, | 98 'v8_optimized_debug%': 0, |
| 99 | 99 |
| 100 # Relative path to icu.gyp from this file. | 100 # Relative path to icu.gyp from this file. |
| 101 'icu_gyp_path': '../third_party/icu/icu.gyp', | 101 'icu_gyp_path': '../third_party/icu/icu.gyp', |
| 102 | 102 |
| 103 'conditions': [ | 103 'conditions': [ |
| 104 ['(v8_target_arch=="arm" and host_arch!="arm") or \ | 104 ['(v8_target_arch=="arm" and host_arch!="arm") or \ |
| 105 (v8_target_arch=="a64" and host_arch!="a64") or \ | 105 (v8_target_arch=="a64" and host_arch!="a64") or \ |
| 106 (v8_target_arch=="arm64" and host_arch!="arm64") or \ |
| 106 (v8_target_arch=="mipsel" and host_arch!="mipsel") or \ | 107 (v8_target_arch=="mipsel" and host_arch!="mipsel") or \ |
| 107 (v8_target_arch=="x64" and host_arch!="x64") or \ | 108 (v8_target_arch=="x64" and host_arch!="x64") or \ |
| 108 (OS=="android" or OS=="qnx")', { | 109 (OS=="android" or OS=="qnx")', { |
| 109 'want_separate_host_toolset': 1, | 110 'want_separate_host_toolset': 1, |
| 110 }, { | 111 }, { |
| 111 'want_separate_host_toolset': 0, | 112 'want_separate_host_toolset': 0, |
| 112 }], | 113 }], |
| 113 ['OS == "win"', { | 114 ['OS == "win"', { |
| 114 'os_posix%': 0, | 115 'os_posix%': 0, |
| 115 }, { | 116 }, { |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 ], | 354 ], |
| 354 'target_conditions': [ | 355 'target_conditions': [ |
| 355 ['_type!="static_library"', { | 356 ['_type!="static_library"', { |
| 356 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, | 357 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, |
| 357 }], | 358 }], |
| 358 ], # target_conditions | 359 ], # target_conditions |
| 359 }, # target_defaults | 360 }, # target_defaults |
| 360 }], # OS=="mac" | 361 }], # OS=="mac" |
| 361 ], | 362 ], |
| 362 } | 363 } |
| OLD | NEW |