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

Side by Side Diff: tools/gyp/v8.gyp

Issue 1294543006: Allowing optional build of a WASM prototype behind a gyp define. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: merge Created 5 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
« DEPS ('K') | « test/unittests/unittests.gyp ('k') | no next file » | 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 1375 matching lines...) Expand 10 before | Expand all | Expand 10 after
1386 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_FILE'], 1386 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_FILE'],
1387 }, { # else icu_use_data_file_flag !=1 1387 }, { # else icu_use_data_file_flag !=1
1388 'conditions': [ 1388 'conditions': [
1389 ['OS=="win"', { 1389 ['OS=="win"', {
1390 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_SHARED'], 1390 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_SHARED'],
1391 }, { 1391 }, {
1392 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_STATIC'], 1392 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_STATIC'],
1393 }], 1393 }],
1394 ], 1394 ],
1395 }], 1395 }],
1396 ['v8_wasm!=0', {
1397 'dependencies': ['../../third_party/wasm/src/wasm/wasm.gyp:wasm'],
1398 }],
1396 ], 1399 ],
1397 }, 1400 },
1398 { 1401 {
1399 'target_name': 'v8_libbase', 1402 'target_name': 'v8_libbase',
1400 'type': 'static_library', 1403 'type': 'static_library',
1401 'variables': { 1404 'variables': {
1402 'optimize': 'max', 1405 'optimize': 'max',
1403 }, 1406 },
1404 'include_dirs+': [ 1407 'include_dirs+': [
1405 '../..', 1408 '../..',
(...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after
1981 }], 1984 }],
1982 ['want_separate_host_toolset==1', { 1985 ['want_separate_host_toolset==1', {
1983 'toolsets': ['host'], 1986 'toolsets': ['host'],
1984 }, { 1987 }, {
1985 'toolsets': ['target'], 1988 'toolsets': ['target'],
1986 }], 1989 }],
1987 ], 1990 ],
1988 }, 1991 },
1989 ], 1992 ],
1990 } 1993 }
OLDNEW
« DEPS ('K') | « test/unittests/unittests.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698