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

Side by Side Diff: build/standalone.gypi

Issue 371923006: Add mips64 port. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebase Created 6 years, 5 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 | « build/detect_v8_host_arch.py ('k') | build/toolchain.gypi » ('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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 # near-release speeds. 91 # near-release speeds.
92 'v8_optimized_debug%': 0, 92 'v8_optimized_debug%': 0,
93 93
94 # Relative path to icu.gyp from this file. 94 # Relative path to icu.gyp from this file.
95 'icu_gyp_path': '../third_party/icu/icu.gyp', 95 'icu_gyp_path': '../third_party/icu/icu.gyp',
96 96
97 'conditions': [ 97 'conditions': [
98 ['(v8_target_arch=="arm" and host_arch!="arm") or \ 98 ['(v8_target_arch=="arm" and host_arch!="arm") or \
99 (v8_target_arch=="arm64" and host_arch!="arm64") or \ 99 (v8_target_arch=="arm64" and host_arch!="arm64") or \
100 (v8_target_arch=="mipsel" and host_arch!="mipsel") or \ 100 (v8_target_arch=="mipsel" and host_arch!="mipsel") or \
101 (v8_target_arch=="mips64el" and host_arch!="mips64el") or \
101 (v8_target_arch=="x64" and host_arch!="x64") or \ 102 (v8_target_arch=="x64" and host_arch!="x64") or \
102 (OS=="android" or OS=="qnx")', { 103 (OS=="android" or OS=="qnx")', {
103 'want_separate_host_toolset': 1, 104 'want_separate_host_toolset': 1,
104 }, { 105 }, {
105 'want_separate_host_toolset': 0, 106 'want_separate_host_toolset': 0,
106 }], 107 }],
107 ['OS == "win"', { 108 ['OS == "win"', {
108 'os_posix%': 0, 109 'os_posix%': 0,
109 }, { 110 }, {
110 'os_posix%': 1, 111 'os_posix%': 1,
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 ], 353 ],
353 'target_conditions': [ 354 'target_conditions': [
354 ['_type!="static_library"', { 355 ['_type!="static_library"', {
355 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, 356 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']},
356 }], 357 }],
357 ], # target_conditions 358 ], # target_conditions
358 }, # target_defaults 359 }, # target_defaults
359 }], # OS=="mac" 360 }], # OS=="mac"
360 ], 361 ],
361 } 362 }
OLDNEW
« no previous file with comments | « build/detect_v8_host_arch.py ('k') | build/toolchain.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698