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

Side by Side Diff: headless/BUILD.gn

Issue 2899403004: Add missing dependencies on exe_and_shlib_deps (Chromium repo) (Closed)
Patch Set: Created 3 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/util/process_version.gni") 6 import("//build/util/process_version.gni")
7 import("//headless/headless.gni") 7 import("//headless/headless.gni")
8 import("//mojo/public/tools/bindings/mojom.gni") 8 import("//mojo/public/tools/bindings/mojom.gni")
9 import("//printing/features/features.gni") 9 import("//printing/features/features.gni")
10 import("//testing/test.gni") 10 import("//testing/test.gni")
(...skipping 666 matching lines...) Expand 10 before | Expand all | Expand 10 after
677 } 677 }
678 } 678 }
679 679
680 executable("headless_shell") { 680 executable("headless_shell") {
681 sources = [ 681 sources = [
682 "app/headless_shell_main.cc", 682 "app/headless_shell_main.cc",
683 ] 683 ]
684 684
685 deps = [ 685 deps = [
686 ":headless_shell_lib", 686 ":headless_shell_lib",
687 "//build/config:exe_and_shlib_deps",
687 ] 688 ]
688 689
689 if (is_win) { 690 if (is_win) {
690 deps += [ "//build/win:default_exe_manifest" ] 691 deps += [ "//build/win:default_exe_manifest" ]
691 } 692 }
692 } 693 }
693 694
694 process_version("version_header") { 695 process_version("version_header") {
695 template_file = "public/version.h.in" 696 template_file = "public/version.h.in"
696 sources = [ 697 sources = [
697 "//build/util/LASTCHANGE", 698 "//build/util/LASTCHANGE",
698 "//chrome/VERSION", 699 "//chrome/VERSION",
699 ] 700 ]
700 output = "$target_gen_dir/public/version.h" 701 output = "$target_gen_dir/public/version.h"
701 } 702 }
702 703
703 executable("headless_example") { 704 executable("headless_example") {
704 sources = [ 705 sources = [
705 "app/headless_example.cc", 706 "app/headless_example.cc",
706 ] 707 ]
707 708
708 deps = [ 709 deps = [
709 ":headless_shell_lib", 710 ":headless_shell_lib",
711 "//build/config:exe_and_shlib_deps",
710 ] 712 ]
711 } 713 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698