| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |