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

Side by Side Diff: src/version.cc

Issue 933533003: Version 4.2.70.1 (cherry-pick) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@4.2.70
Patch Set: Created 5 years, 10 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 | « src/serialize.cc ('k') | test/cctest/test-weaktypedarrays.cc » ('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 #include "src/v8.h" 5 #include "src/v8.h"
6 6
7 #include "src/version.h" 7 #include "src/version.h"
8 8
9 // These macros define the version number for the current version. 9 // These macros define the version number for the current version.
10 // NOTE these macros are used by some of the tool scripts and the build 10 // NOTE these macros are used by some of the tool scripts and the build
11 // system so their names cannot be changed without changing the scripts. 11 // system so their names cannot be changed without changing the scripts.
12 #define MAJOR_VERSION 4 12 #define MAJOR_VERSION 4
13 #define MINOR_VERSION 2 13 #define MINOR_VERSION 2
14 #define BUILD_NUMBER 70 14 #define BUILD_NUMBER 70
15 #define PATCH_LEVEL 0 15 #define PATCH_LEVEL 1
16 // Use 1 for candidates and 0 otherwise. 16 // Use 1 for candidates and 0 otherwise.
17 // (Boolean macro values are not supported by all preprocessors.) 17 // (Boolean macro values are not supported by all preprocessors.)
18 #define IS_CANDIDATE_VERSION 0 18 #define IS_CANDIDATE_VERSION 0
19 19
20 // Define SONAME to have the build system put a specific SONAME into the 20 // Define SONAME to have the build system put a specific SONAME into the
21 // shared library instead the generic SONAME generated from the V8 version 21 // shared library instead the generic SONAME generated from the V8 version
22 // number. This define is mainly used by the build system script. 22 // number. This define is mainly used by the build system script.
23 #define SONAME "" 23 #define SONAME ""
24 24
25 #if IS_CANDIDATE_VERSION 25 #if IS_CANDIDATE_VERSION
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 SNPrintF(str, "libv8-%d.%d.%d%s.so", 83 SNPrintF(str, "libv8-%d.%d.%d%s.so",
84 GetMajor(), GetMinor(), GetBuild(), candidate); 84 GetMajor(), GetMinor(), GetBuild(), candidate);
85 } 85 }
86 } else { 86 } else {
87 // Use specific SONAME. 87 // Use specific SONAME.
88 SNPrintF(str, "%s", soname_); 88 SNPrintF(str, "%s", soname_);
89 } 89 }
90 } 90 }
91 91
92 } } // namespace v8::internal 92 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/serialize.cc ('k') | test/cctest/test-weaktypedarrays.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698