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 1891 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1902 'target_name': 'v8_libplatform', | 1902 'target_name': 'v8_libplatform', |
1903 'type': 'static_library', | 1903 'type': 'static_library', |
1904 'variables': { | 1904 'variables': { |
1905 'optimize': 'max', | 1905 'optimize': 'max', |
1906 }, | 1906 }, |
1907 'dependencies': [ | 1907 'dependencies': [ |
1908 'v8_libbase', | 1908 'v8_libbase', |
1909 ], | 1909 ], |
1910 'include_dirs+': [ | 1910 'include_dirs+': [ |
1911 '..', | 1911 '..', |
1912 '../include', | |
Michael Achenbach
2016/05/18 10:40:41
This accounts for a semantic difference between pu
| |
1912 ], | 1913 ], |
1913 'sources': [ | 1914 'sources': [ |
1914 '../include/libplatform/libplatform.h', | 1915 '../include/libplatform/libplatform.h', |
1915 'libplatform/default-platform.cc', | 1916 'libplatform/default-platform.cc', |
1916 'libplatform/default-platform.h', | 1917 'libplatform/default-platform.h', |
1917 'libplatform/task-queue.cc', | 1918 'libplatform/task-queue.cc', |
1918 'libplatform/task-queue.h', | 1919 'libplatform/task-queue.h', |
1919 'libplatform/worker-thread.cc', | 1920 'libplatform/worker-thread.cc', |
1920 'libplatform/worker-thread.h', | 1921 'libplatform/worker-thread.h', |
1921 ], | 1922 ], |
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2239 }], | 2240 }], |
2240 ['want_separate_host_toolset==1', { | 2241 ['want_separate_host_toolset==1', { |
2241 'toolsets': ['host'], | 2242 'toolsets': ['host'], |
2242 }, { | 2243 }, { |
2243 'toolsets': ['target'], | 2244 'toolsets': ['target'], |
2244 }], | 2245 }], |
2245 ], | 2246 ], |
2246 }, | 2247 }, |
2247 ], | 2248 ], |
2248 } | 2249 } |
OLD | NEW |