OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |