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

Side by Side Diff: BUILD.gn

Issue 2804643006: Expose the ValueSerializer data format version as a compile-time constant. (Closed)
Patch Set: . Created 3 years, 8 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 | include/v8.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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium 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 import("//build/config/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/arm.gni") 6 import("//build/config/arm.gni")
7 import("//build/config/dcheck_always_on.gni") 7 import("//build/config/dcheck_always_on.gni")
8 import("//build/config/mips.gni") 8 import("//build/config/mips.gni")
9 import("//build/config/sanitizers/sanitizers.gni") 9 import("//build/config/sanitizers/sanitizers.gni")
10 10
(...skipping 1011 matching lines...) Expand 10 before | Expand all | Expand 10 after
1022 1022
1023 configs = [ ":internal_config" ] 1023 configs = [ ":internal_config" ]
1024 } 1024 }
1025 1025
1026 # This is split out to be a non-code containing target that the Chromium browser 1026 # This is split out to be a non-code containing target that the Chromium browser
1027 # DLL can depend upon to get only a version string. 1027 # DLL can depend upon to get only a version string.
1028 v8_header_set("v8_version") { 1028 v8_header_set("v8_version") {
1029 configs = [ ":internal_config" ] 1029 configs = [ ":internal_config" ]
1030 1030
1031 sources = [ 1031 sources = [
1032 "include/v8-value-serializer-version.h",
1032 "include/v8-version-string.h", 1033 "include/v8-version-string.h",
1033 "include/v8-version.h", 1034 "include/v8-version.h",
1034 ] 1035 ]
1035 } 1036 }
1036 1037
1037 v8_source_set("v8_base") { 1038 v8_source_set("v8_base") {
1038 visibility = [ ":*" ] # Only targets in this file can depend on this. 1039 visibility = [ ":*" ] # Only targets in this file can depend on this.
1039 1040
1040 sources = [ 1041 sources = [
1041 "//base/trace_event/common/trace_event_common.h", 1042 "//base/trace_event/common/trace_event_common.h",
(...skipping 2199 matching lines...) Expand 10 before | Expand all | Expand 10 after
3241 ] 3242 ]
3242 3243
3243 configs = [ 3244 configs = [
3244 ":external_config", 3245 ":external_config",
3245 ":internal_config_base", 3246 ":internal_config_base",
3246 ] 3247 ]
3247 } 3248 }
3248 3249
3249 v8_fuzzer("wasm_compile_fuzzer") { 3250 v8_fuzzer("wasm_compile_fuzzer") {
3250 } 3251 }
OLDNEW
« no previous file with comments | « no previous file | include/v8.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698