Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(188)

Side by Side Diff: build/standalone.gypi

Issue 153913002: A64: Synchronize with r16756. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ChangeLog ('k') | include/v8.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 'target_arch%': '<(target_arch)', 74 'target_arch%': '<(target_arch)',
75 'v8_target_arch%': '<(v8_target_arch)', 75 'v8_target_arch%': '<(v8_target_arch)',
76 'werror%': '-Werror', 76 'werror%': '-Werror',
77 77
78 # .gyp files or targets should set v8_code to 1 if they build V8 specific 78 # .gyp files or targets should set v8_code to 1 if they build V8 specific
79 # code, as opposed to external code. This variable is used to control such 79 # code, as opposed to external code. This variable is used to control such
80 # things as the set of warnings to enable, and whether warnings are treated 80 # things as the set of warnings to enable, and whether warnings are treated
81 # as errors. 81 # as errors.
82 'v8_code%': 0, 82 'v8_code%': 0,
83 83
84 # Relative path to icu.gyp from this file.
85 'icu_gyp_path': '../third_party/icu/icu.gyp',
86
84 'conditions': [ 87 'conditions': [
85 ['(v8_target_arch=="arm" and host_arch!="arm") or \ 88 ['(v8_target_arch=="arm" and host_arch!="arm") or \
86 (v8_target_arch=="a64" and host_arch!="a64") or \ 89 (v8_target_arch=="a64" and host_arch!="a64") or \
87 (v8_target_arch=="mipsel" and host_arch!="mipsel") or \ 90 (v8_target_arch=="mipsel" and host_arch!="mipsel") or \
88 (v8_target_arch=="x64" and host_arch!="x64") or \ 91 (v8_target_arch=="x64" and host_arch!="x64") or \
89 (OS=="android")', { 92 (OS=="android")', {
90 'want_separate_host_toolset': 1, 93 'want_separate_host_toolset': 1,
91 }, { 94 }, {
92 'want_separate_host_toolset': 0, 95 'want_separate_host_toolset': 0,
93 }], 96 }],
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 }, 284 },
282 'target_conditions': [ 285 'target_conditions': [
283 ['_type!="static_library"', { 286 ['_type!="static_library"', {
284 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, 287 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']},
285 }], 288 }],
286 ], # target_conditions 289 ], # target_conditions
287 }, # target_defaults 290 }, # target_defaults
288 }], # OS=="mac" 291 }], # OS=="mac"
289 ], 292 ],
290 } 293 }
OLDNEW
« no previous file with comments | « ChangeLog ('k') | include/v8.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698