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

Side by Side Diff: src/v8.gyp

Issue 1989193002: [gn] Make gyp include dirs equal to gn (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 7 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 1891 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
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