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

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: drop deps 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
« no previous file with comments | « 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 1378 matching lines...) Expand 10 before | Expand all | Expand 10 after
1389 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_FILE'], 1389 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_FILE'],
1390 }, { # else icu_use_data_file_flag !=1 1390 }, { # else icu_use_data_file_flag !=1
1391 'conditions': [ 1391 'conditions': [
1392 ['OS=="win"', { 1392 ['OS=="win"', {
1393 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_SHARED'], 1393 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_SHARED'],
1394 }, { 1394 }, {
1395 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_STATIC'], 1395 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_STATIC'],
1396 }], 1396 }],
1397 ], 1397 ],
1398 }], 1398 }],
1399 ['v8_wasm!=0', {
1400 'dependencies': ['../../third_party/wasm/src/wasm/wasm.gyp:wasm'],
1401 }],
1399 ], 1402 ],
1400 }, 1403 },
1401 { 1404 {
1402 'target_name': 'v8_libbase', 1405 'target_name': 'v8_libbase',
1403 'type': 'static_library', 1406 'type': 'static_library',
1404 'variables': { 1407 'variables': {
1405 'optimize': 'max', 1408 'optimize': 'max',
1406 }, 1409 },
1407 'include_dirs+': [ 1410 'include_dirs+': [
1408 '../..', 1411 '../..',
(...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after
1984 }], 1987 }],
1985 ['want_separate_host_toolset==1', { 1988 ['want_separate_host_toolset==1', {
1986 'toolsets': ['host'], 1989 'toolsets': ['host'],
1987 }, { 1990 }, {
1988 'toolsets': ['target'], 1991 'toolsets': ['target'],
1989 }], 1992 }],
1990 ], 1993 ],
1991 }, 1994 },
1992 ], 1995 ],
1993 } 1996 }
OLDNEW
« no previous file with comments | « test/unittests/unittests.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698