| OLD | NEW |
| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/locales.gni") | 6 import("//build/config/locales.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//chrome/chrome_repack_locales.gni") | 8 import("//chrome/chrome_repack_locales.gni") |
| 9 import("//chrome/version.gni") | 9 import("//chrome/version.gni") |
| 10 | 10 |
| (...skipping 674 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 685 ] | 685 ] |
| 686 | 686 |
| 687 deps = [ | 687 deps = [ |
| 688 "//chrome/browser", | 688 "//chrome/browser", |
| 689 "//chrome/browser/ui", | 689 "//chrome/browser/ui", |
| 690 "//chrome/child", | 690 "//chrome/child", |
| 691 "//chrome/plugin", | 691 "//chrome/plugin", |
| 692 "//chrome/renderer", | 692 "//chrome/renderer", |
| 693 "//chrome/utility", | 693 "//chrome/utility", |
| 694 "//components/enhanced_bookmarks", | 694 "//components/enhanced_bookmarks", |
| 695 "//content/public/app:browser", | 695 "//content/public/app:both", |
| 696 ] | 696 ] |
| 697 } | 697 } |
| 698 } | 698 } |
| 699 | 699 |
| 700 if (is_linux) { | 700 if (is_linux) { |
| 701 action("manpage") { | 701 action("manpage") { |
| 702 if (is_chrome_branded) { | 702 if (is_chrome_branded) { |
| 703 name = "Google Chrome" | 703 name = "Google Chrome" |
| 704 filename = "google-chrome" | 704 filename = "google-chrome" |
| 705 confdir = "google-chrome" | 705 confdir = "google-chrome" |
| (...skipping 16 matching lines...) Expand all Loading... |
| 722 | 722 |
| 723 args = [ | 723 args = [ |
| 724 rebase_path(infile, root_build_dir), | 724 rebase_path(infile, root_build_dir), |
| 725 rebase_path(outfile, root_build_dir), | 725 rebase_path(outfile, root_build_dir), |
| 726 "-e s/@@NAME@@/$name/", | 726 "-e s/@@NAME@@/$name/", |
| 727 "-e s/@@FILENAME@@/$filename/", | 727 "-e s/@@FILENAME@@/$filename/", |
| 728 "-e s/@@CONFDIR@@/$confdir/", | 728 "-e s/@@CONFDIR@@/$confdir/", |
| 729 ] | 729 ] |
| 730 } | 730 } |
| 731 } | 731 } |
| OLD | NEW |