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 |
80 'conditions': [ | 83 'conditions': [ |
81 ['(v8_target_arch=="arm" and host_arch!="arm") or \ | 84 ['(v8_target_arch=="arm" and host_arch!="arm") or \ |
82 (v8_target_arch=="mipsel" and host_arch!="mipsel") or \ | 85 (v8_target_arch=="mipsel" and host_arch!="mipsel") or \ |
83 (v8_target_arch=="x64" and host_arch!="x64") or \ | 86 (v8_target_arch=="x64" and host_arch!="x64") or \ |
84 (OS=="android")', { | 87 (OS=="android")', { |
85 'want_separate_host_toolset': 1, | 88 'want_separate_host_toolset': 1, |
86 }, { | 89 }, { |
87 'want_separate_host_toolset': 0, | 90 'want_separate_host_toolset': 0, |
88 }], | 91 }], |
89 ['OS == "win"', { | 92 ['OS == "win"', { |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
276 }, | 279 }, |
277 'target_conditions': [ | 280 'target_conditions': [ |
278 ['_type!="static_library"', { | 281 ['_type!="static_library"', { |
279 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, | 282 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, |
280 }], | 283 }], |
281 ], # target_conditions | 284 ], # target_conditions |
282 }, # target_defaults | 285 }, # target_defaults |
283 }], # OS=="mac" | 286 }], # OS=="mac" |
284 ], | 287 ], |
285 } | 288 } |
OLD | NEW |