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

Side by Side Diff: blimp/engine/BUILD.gn

Issue 1937423002: Refactor generate engine manifest to accept blacklist as an argument. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add missed output location update in doc. Created 4 years, 7 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
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/sanitizers/sanitizers.gni") 7 import("//build/config/sanitizers/sanitizers.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//mojo/public/tools/bindings/mojom.gni") 9 import("//mojo/public/tools/bindings/mojom.gni")
10 import("//tools/grit/repack.gni") 10 import("//tools/grit/repack.gni")
(...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after
487 } 487 }
488 488
489 group("engine") { 489 group("engine") {
490 public_deps = [ 490 public_deps = [
491 ":blimp_engine_app", 491 ":blimp_engine_app",
492 ] 492 ]
493 } 493 }
494 494
495 _manifest = "$root_gen_dir/engine-manifest.txt" 495 _manifest = "$root_gen_dir/engine-manifest.txt"
496 _rebased_manifest = rebase_path(_manifest, root_out_dir) 496 _rebased_manifest = rebase_path(_manifest, root_out_dir)
497 _rebased_blacklist =
498 rebase_path("//blimp/tools/engine-manifest-blacklist.txt")
497 499
498 action("generate_manifest") { 500 action("generate_manifest") {
499 script = "//blimp/tools/generate-engine-manifest.py" 501 script = "//blimp/tools/generate-target-manifest.py"
500 args = [ 502 args = [
503 "--blacklist",
504 _rebased_blacklist,
501 "--runtime-deps-file", 505 "--runtime-deps-file",
502 _rebased_runtime_deps, 506 _rebased_runtime_deps,
503 "--output", 507 "--output",
504 _rebased_manifest, 508 _rebased_manifest,
505 ] 509 ]
506 inputs = [ 510 inputs = [
507 _runtime_deps, 511 _runtime_deps,
508 ] 512 ]
509 outputs = [ 513 outputs = [
510 _manifest, 514 _manifest,
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
588 rebase_path(symbol_file, root_build_dir), 592 rebase_path(symbol_file, root_build_dir),
589 ] 593 ]
590 594
591 deps = [ 595 deps = [
592 ":blimp_engine_app", 596 ":blimp_engine_app",
593 dump_syms_label, 597 dump_syms_label,
594 ] 598 ]
595 } 599 }
596 } 600 }
597 } 601 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698