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

Side by Side Diff: gypfiles/standalone.gypi

Issue 2184733002: [inspector] add inspector protocol parser test build target. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: add missing file Created 4 years, 4 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
« no previous file with comments | « DEPS ('k') | src/v8.gyp » ('j') | src/v8.gyp » ('J')
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 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 226
227 # Use external files for startup data blobs: 227 # Use external files for startup data blobs:
228 # the JS builtins sources and the start snapshot. 228 # the JS builtins sources and the start snapshot.
229 # Embedders that don't use standalone.gypi will need to add 229 # Embedders that don't use standalone.gypi will need to add
230 # their own default value. 230 # their own default value.
231 'v8_use_external_startup_data%': 1, 231 'v8_use_external_startup_data%': 1,
232 232
233 # Relative path to icu.gyp from this file. 233 # Relative path to icu.gyp from this file.
234 'icu_gyp_path': '../third_party/icu/icu.gyp', 234 'icu_gyp_path': '../third_party/icu/icu.gyp',
235 235
236 # Relative path to inspector.gyp from this file.
237 'inspector_gyp_path': '../src/v8-inspector/inspector.gyp',
238
236 'conditions': [ 239 'conditions': [
237 ['(v8_target_arch=="arm" and host_arch!="arm") or \ 240 ['(v8_target_arch=="arm" and host_arch!="arm") or \
238 (v8_target_arch=="arm64" and host_arch!="arm64") or \ 241 (v8_target_arch=="arm64" and host_arch!="arm64") or \
239 (v8_target_arch=="mipsel" and host_arch!="mipsel") or \ 242 (v8_target_arch=="mipsel" and host_arch!="mipsel") or \
240 (v8_target_arch=="mips64el" and host_arch!="mips64el") or \ 243 (v8_target_arch=="mips64el" and host_arch!="mips64el") or \
241 (v8_target_arch=="mips" and host_arch!="mips") or \ 244 (v8_target_arch=="mips" and host_arch!="mips") or \
242 (v8_target_arch=="x64" and host_arch!="x64") or \ 245 (v8_target_arch=="x64" and host_arch!="x64") or \
243 (OS=="android" or OS=="qnx")', { 246 (OS=="android" or OS=="qnx")', {
244 'want_separate_host_toolset': 1, 247 'want_separate_host_toolset': 1,
245 }, { 248 }, {
(...skipping 1231 matching lines...) Expand 10 before | Expand all | Expand 10 after
1477 '-fsanitize=cfi-vcall', 1480 '-fsanitize=cfi-vcall',
1478 '-fsanitize=cfi-derived-cast', 1481 '-fsanitize=cfi-derived-cast',
1479 '-fsanitize=cfi-unrelated-cast', 1482 '-fsanitize=cfi-unrelated-cast',
1480 ], 1483 ],
1481 }], 1484 }],
1482 ], 1485 ],
1483 }, 1486 },
1484 }], 1487 }],
1485 ], 1488 ],
1486 } 1489 }
OLDNEW
« no previous file with comments | « DEPS ('k') | src/v8.gyp » ('j') | src/v8.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698