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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 # to appear before libv8_snapshot.a so it's listed explicitly. | 54 # to appear before libv8_snapshot.a so it's listed explicitly. |
55 'dependencies': ['v8_base', 'v8_nosnapshot'], | 55 'dependencies': ['v8_base', 'v8_nosnapshot'], |
56 }], | 56 }], |
57 ['component=="shared_library"', { | 57 ['component=="shared_library"', { |
58 'type': '<(component)', | 58 'type': '<(component)', |
59 'sources': [ | 59 'sources': [ |
60 # Note: on non-Windows we still build this file so that gyp | 60 # Note: on non-Windows we still build this file so that gyp |
61 # has some sources to link into the component. | 61 # has some sources to link into the component. |
62 '../../src/v8dll-main.cc', | 62 '../../src/v8dll-main.cc', |
63 ], | 63 ], |
| 64 'include_dirs': [ |
| 65 '../..', |
| 66 ], |
64 'defines': [ | 67 'defines': [ |
65 'V8_SHARED', | 68 'V8_SHARED', |
66 'BUILDING_V8_SHARED', | 69 'BUILDING_V8_SHARED', |
67 ], | 70 ], |
68 'direct_dependent_settings': { | 71 'direct_dependent_settings': { |
69 'defines': [ | 72 'defines': [ |
70 'V8_SHARED', | 73 'V8_SHARED', |
71 'USING_V8_SHARED', | 74 'USING_V8_SHARED', |
72 ], | 75 ], |
73 }, | 76 }, |
(...skipping 1150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1224 }], | 1227 }], |
1225 ['v8_compress_startup_data=="bz2"', { | 1228 ['v8_compress_startup_data=="bz2"', { |
1226 'libraries': [ | 1229 'libraries': [ |
1227 '-lbz2', | 1230 '-lbz2', |
1228 ] | 1231 ] |
1229 }], | 1232 }], |
1230 ], | 1233 ], |
1231 }, | 1234 }, |
1232 ], | 1235 ], |
1233 } | 1236 } |
OLD | NEW |