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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 'target_arch%': '<(target_arch)', | 70 'target_arch%': '<(target_arch)', |
71 'v8_target_arch%': '<(v8_target_arch)', | 71 'v8_target_arch%': '<(v8_target_arch)', |
72 'werror%': '-Werror', | 72 'werror%': '-Werror', |
73 | 73 |
74 # .gyp files or targets should set v8_code to 1 if they build V8 specific | 74 # .gyp files or targets should set v8_code to 1 if they build V8 specific |
75 # code, as opposed to external code. This variable is used to control such | 75 # code, as opposed to external code. This variable is used to control such |
76 # things as the set of warnings to enable, and whether warnings are treated | 76 # things as the set of warnings to enable, and whether warnings are treated |
77 # as errors. | 77 # as errors. |
78 'v8_code%': 0, | 78 'v8_code%': 0, |
79 | 79 |
80 # Relative path to icu.gyp from this file. | |
81 'icu_gyp_path': '../third_party/icu/icu.gyp', | |
82 | |
83 'conditions': [ | 80 'conditions': [ |
84 ['(v8_target_arch=="arm" and host_arch!="arm") or \ | 81 ['(v8_target_arch=="arm" and host_arch!="arm") or \ |
85 (v8_target_arch=="mipsel" and host_arch!="mipsel") or \ | 82 (v8_target_arch=="mipsel" and host_arch!="mipsel") or \ |
86 (v8_target_arch=="x64" and host_arch!="x64") or \ | 83 (v8_target_arch=="x64" and host_arch!="x64") or \ |
87 (OS=="android")', { | 84 (OS=="android")', { |
88 'want_separate_host_toolset': 1, | 85 'want_separate_host_toolset': 1, |
89 }, { | 86 }, { |
90 'want_separate_host_toolset': 0, | 87 'want_separate_host_toolset': 0, |
91 }], | 88 }], |
92 ['OS == "win"', { | 89 ['OS == "win"', { |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
279 }, | 276 }, |
280 'target_conditions': [ | 277 'target_conditions': [ |
281 ['_type!="static_library"', { | 278 ['_type!="static_library"', { |
282 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, | 279 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, |
283 }], | 280 }], |
284 ], # target_conditions | 281 ], # target_conditions |
285 }, # target_defaults | 282 }, # target_defaults |
286 }], # OS=="mac" | 283 }], # OS=="mac" |
287 ], | 284 ], |
288 } | 285 } |
OLD | NEW |