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

Side by Side Diff: include/v8.h

Issue 2342563002: [d8] Fix the shared-library build (Closed)
Patch Set: Mark as extern in .cc Created 4 years, 2 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 | « BUILD.gn ('k') | src/allocation.h » ('j') | 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 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** \mainpage V8 API Reference Guide 5 /** \mainpage V8 API Reference Guide
6 * 6 *
7 * V8 is Google's open source JavaScript engine. 7 * V8 is Google's open source JavaScript engine.
8 * 8 *
9 * This set of documents provides reference material generated from the 9 * This set of documents provides reference material generated from the
10 * V8 header file, include/v8.h. 10 * V8 header file, include/v8.h.
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 # define V8_EXPORT __declspec(dllexport) 44 # define V8_EXPORT __declspec(dllexport)
45 #elif USING_V8_SHARED 45 #elif USING_V8_SHARED
46 # define V8_EXPORT __declspec(dllimport) 46 # define V8_EXPORT __declspec(dllimport)
47 #else 47 #else
48 # define V8_EXPORT 48 # define V8_EXPORT
49 #endif // BUILDING_V8_SHARED 49 #endif // BUILDING_V8_SHARED
50 50
51 #else // V8_OS_WIN 51 #else // V8_OS_WIN
52 52
53 // Setup for Linux shared library export. 53 // Setup for Linux shared library export.
54 #if V8_HAS_ATTRIBUTE_VISIBILITY && defined(V8_SHARED) 54 #if V8_HAS_ATTRIBUTE_VISIBILITY
55 # ifdef BUILDING_V8_SHARED 55 # ifdef BUILDING_V8_SHARED
56 # define V8_EXPORT __attribute__ ((visibility("default"))) 56 # define V8_EXPORT __attribute__ ((visibility("default")))
57 # else 57 # else
58 # define V8_EXPORT 58 # define V8_EXPORT
59 # endif 59 # endif
60 #else 60 #else
61 # define V8_EXPORT 61 # define V8_EXPORT
62 #endif 62 #endif
63 63
64 #endif // V8_OS_WIN 64 #endif // V8_OS_WIN
(...skipping 9482 matching lines...) Expand 10 before | Expand all | Expand 10 after
9547 */ 9547 */
9548 9548
9549 9549
9550 } // namespace v8 9550 } // namespace v8
9551 9551
9552 9552
9553 #undef TYPE_CHECK 9553 #undef TYPE_CHECK
9554 9554
9555 9555
9556 #endif // INCLUDE_V8_H_ 9556 #endif // INCLUDE_V8_H_
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | src/allocation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698