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

Side by Side Diff: tools/gyp/v8.gyp

Issue 521613003: Fix missing bracket in gyp file from r23522. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 3 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 | Annotate | Revision Log
« 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 }, { 65 }, {
66 'inputs': [ 66 'inputs': [
67 '<(PRODUCT_DIR)/snapshot_blob.bin', 67 '<(PRODUCT_DIR)/snapshot_blob.bin',
68 ], 68 ],
69 }], 69 }],
70 ], 70 ],
71 }], 71 }],
72 ['v8_use_external_startup_data==1 and want_separate_host_toolset==0', { 72 ['v8_use_external_startup_data==1 and want_separate_host_toolset==0', {
73 'dependencies': ['v8_base', 'v8_external_snapshot'], 73 'dependencies': ['v8_base', 'v8_external_snapshot'],
74 'inputs': [ '<(PRODUCT_DIR)/snapshot_blob.bin', ], 74 'inputs': [ '<(PRODUCT_DIR)/snapshot_blob.bin', ],
75 }],
75 ['component=="shared_library"', { 76 ['component=="shared_library"', {
76 'type': '<(component)', 77 'type': '<(component)',
77 'sources': [ 78 'sources': [
78 # Note: on non-Windows we still build this file so that gyp 79 # Note: on non-Windows we still build this file so that gyp
79 # has some sources to link into the component. 80 # has some sources to link into the component.
80 '../../src/v8dll-main.cc', 81 '../../src/v8dll-main.cc',
81 ], 82 ],
82 'include_dirs': [ 83 'include_dirs': [
83 '../..', 84 '../..',
84 ], 85 ],
(...skipping 1557 matching lines...) Expand 10 before | Expand all | Expand 10 after
1642 }], 1643 }],
1643 ['v8_compress_startup_data=="bz2"', { 1644 ['v8_compress_startup_data=="bz2"', {
1644 'libraries': [ 1645 'libraries': [
1645 '-lbz2', 1646 '-lbz2',
1646 ] 1647 ]
1647 }], 1648 }],
1648 ], 1649 ],
1649 }, 1650 },
1650 ], 1651 ],
1651 } 1652 }
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