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

Side by Side Diff: BUILD.gn

Issue 2358423002: Version 5.5.251.1 (cherry-pick) (Closed)
Patch Set: Created 4 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
« no previous file with comments | « no previous file | include/v8-version.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 1395 matching lines...) Expand 10 before | Expand all | Expand 10 after
1406 "src/interpreter/bytecode-dead-code-optimizer.cc", 1406 "src/interpreter/bytecode-dead-code-optimizer.cc",
1407 "src/interpreter/bytecode-dead-code-optimizer.h", 1407 "src/interpreter/bytecode-dead-code-optimizer.h",
1408 "src/interpreter/bytecode-decoder.cc", 1408 "src/interpreter/bytecode-decoder.cc",
1409 "src/interpreter/bytecode-decoder.h", 1409 "src/interpreter/bytecode-decoder.h",
1410 "src/interpreter/bytecode-flags.cc", 1410 "src/interpreter/bytecode-flags.cc",
1411 "src/interpreter/bytecode-flags.h", 1411 "src/interpreter/bytecode-flags.h",
1412 "src/interpreter/bytecode-generator.cc", 1412 "src/interpreter/bytecode-generator.cc",
1413 "src/interpreter/bytecode-generator.h", 1413 "src/interpreter/bytecode-generator.h",
1414 "src/interpreter/bytecode-label.cc", 1414 "src/interpreter/bytecode-label.cc",
1415 "src/interpreter/bytecode-label.h", 1415 "src/interpreter/bytecode-label.h",
1416 "src/interpreter/bytecode-operands.cc",
1417 "src/interpreter/bytecode-operands.h",
1418 "src/interpreter/bytecode-peephole-optimizer.cc", 1416 "src/interpreter/bytecode-peephole-optimizer.cc",
1419 "src/interpreter/bytecode-peephole-optimizer.h", 1417 "src/interpreter/bytecode-peephole-optimizer.h",
1420 "src/interpreter/bytecode-peephole-table.h", 1418 "src/interpreter/bytecode-peephole-table.h",
1421 "src/interpreter/bytecode-pipeline.cc", 1419 "src/interpreter/bytecode-pipeline.cc",
1422 "src/interpreter/bytecode-pipeline.h", 1420 "src/interpreter/bytecode-pipeline.h",
1423 "src/interpreter/bytecode-register-allocator.cc", 1421 "src/interpreter/bytecode-register-allocator.cc",
1424 "src/interpreter/bytecode-register-allocator.h", 1422 "src/interpreter/bytecode-register-allocator.h",
1425 "src/interpreter/bytecode-register-optimizer.cc", 1423 "src/interpreter/bytecode-register-optimizer.cc",
1426 "src/interpreter/bytecode-register-optimizer.h", 1424 "src/interpreter/bytecode-register-optimizer.h",
1427 "src/interpreter/bytecode-register.cc", 1425 "src/interpreter/bytecode-register.cc",
(...skipping 947 matching lines...) Expand 10 before | Expand all | Expand 10 after
2375 } 2373 }
2376 } 2374 }
2377 2375
2378 v8_executable("mkpeephole") { 2376 v8_executable("mkpeephole") {
2379 # mkpeephole needs to be built for the build host so the peephole lookup 2377 # mkpeephole needs to be built for the build host so the peephole lookup
2380 # table can built during build. The table depends on the properties of 2378 # table can built during build. The table depends on the properties of
2381 # bytecodes that are described in bytecodes.{cc,h}. 2379 # bytecodes that are described in bytecodes.{cc,h}.
2382 visibility = [ ":*" ] # Only targets in this file can depend on this. 2380 visibility = [ ":*" ] # Only targets in this file can depend on this.
2383 2381
2384 sources = [ 2382 sources = [
2385 "src/interpreter/bytecode-operands.cc",
2386 "src/interpreter/bytecode-operands.h",
2387 "src/interpreter/bytecode-peephole-optimizer.h", 2383 "src/interpreter/bytecode-peephole-optimizer.h",
2388 "src/interpreter/bytecode-traits.h",
2389 "src/interpreter/bytecodes.cc", 2384 "src/interpreter/bytecodes.cc",
2390 "src/interpreter/bytecodes.h", 2385 "src/interpreter/bytecodes.h",
2391 "src/interpreter/mkpeephole.cc", 2386 "src/interpreter/mkpeephole.cc",
2392 ] 2387 ]
2393 2388
2394 configs = [ 2389 configs = [
2395 ":external_config", 2390 ":external_config",
2396 ":internal_config", 2391 ":internal_config",
2397 ] 2392 ]
2398 2393
(...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after
2865 ":fuzzer_support", 2860 ":fuzzer_support",
2866 ":lib_wasm_section_fuzzer", 2861 ":lib_wasm_section_fuzzer",
2867 ":wasm_module_runner", 2862 ":wasm_module_runner",
2868 ] 2863 ]
2869 2864
2870 configs = [ ":internal_config" ] 2865 configs = [ ":internal_config" ]
2871 } 2866 }
2872 2867
2873 v8_fuzzer("wasm_data_section_fuzzer") { 2868 v8_fuzzer("wasm_data_section_fuzzer") {
2874 } 2869 }
OLDNEW
« no previous file with comments | « no previous file | include/v8-version.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698