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

Side by Side Diff: src/v8.gyp

Issue 2207943002: Fix compilation failure when v8 is compiled with Chromium using GYP. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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 | « no previous file | 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 1984 matching lines...) Expand 10 before | Expand all | Expand 10 after
1995 'target_name': 'v8_libplatform', 1995 'target_name': 'v8_libplatform',
1996 'type': 'static_library', 1996 'type': 'static_library',
1997 'variables': { 1997 'variables': {
1998 'optimize': 'max', 1998 'optimize': 'max',
1999 }, 1999 },
2000 'dependencies': [ 2000 'dependencies': [
2001 'v8_libbase', 2001 'v8_libbase',
2002 ], 2002 ],
2003 'include_dirs+': [ 2003 'include_dirs+': [
2004 '..', 2004 '..',
2005 '<(DEPTH)',
2005 '../include', 2006 '../include',
2006 ], 2007 ],
2007 'sources': [ 2008 'sources': [
2008 '../include/libplatform/libplatform.h', 2009 '../include/libplatform/libplatform.h',
2009 '../include/libplatform/v8-tracing.h', 2010 '../include/libplatform/v8-tracing.h',
2010 'libplatform/default-platform.cc', 2011 'libplatform/default-platform.cc',
2011 'libplatform/default-platform.h', 2012 'libplatform/default-platform.h',
2012 'libplatform/task-queue.cc', 2013 'libplatform/task-queue.cc',
2013 'libplatform/task-queue.h', 2014 'libplatform/task-queue.h',
2014 'libplatform/tracing/trace-buffer.cc', 2015 'libplatform/tracing/trace-buffer.cc',
(...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after
2385 'conditions': [ 2386 'conditions': [
2386 ['want_separate_host_toolset_mkpeephole==1', { 2387 ['want_separate_host_toolset_mkpeephole==1', {
2387 'toolsets': ['host'], 2388 'toolsets': ['host'],
2388 }, { 2389 }, {
2389 'toolsets': ['target'], 2390 'toolsets': ['target'],
2390 }], 2391 }],
2391 ], 2392 ],
2392 }, 2393 },
2393 ], 2394 ],
2394 } 2395 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698