| 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/crypto.gni") | 5 import("//build/config/crypto.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//components/nacl/nacl_defines.gni") | 8 import("//components/nacl/nacl_defines.gni") |
| 9 import("//tools/grit/grit_rule.gni") | 9 import("//tools/grit/grit_rule.gni") |
| 10 | 10 |
| (...skipping 595 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 606 gypi_values.chrome_browser_win_mac_wifi_bootstrapping_sources, | 606 gypi_values.chrome_browser_win_mac_wifi_bootstrapping_sources, |
| 607 ".", "//chrome") | 607 ".", "//chrome") |
| 608 } | 608 } |
| 609 } | 609 } |
| 610 } | 610 } |
| 611 | 611 |
| 612 # GYP version: chrome/chrome_resources.gyp:chrome_resources | 612 # GYP version: chrome/chrome_resources.gyp:chrome_resources |
| 613 # (generate_browser_resources action) | 613 # (generate_browser_resources action) |
| 614 grit("resources") { | 614 grit("resources") { |
| 615 source = "browser_resources.grd" | 615 source = "browser_resources.grd" |
| 616 output_dir = "$root_gen_dir/chrome" | |
| 617 outputs = [ | 616 outputs = [ |
| 618 "grit/browser_resources.h", | 617 "grit/browser_resources.h", |
| 619 "browser_resources.pak", | 618 "browser_resources.pak", |
| 620 ] | 619 ] |
| 621 | 620 |
| 622 omnibox_mojom_file = "$root_gen_dir/chrome/browser/ui/webui/omnibox/omnibox.mo
jom.js" | 621 omnibox_mojom_file = "$root_gen_dir/chrome/browser/ui/webui/omnibox/omnibox.mo
jom.js" |
| 623 | 622 |
| 624 grit_flags = [ | 623 grit_flags = [ |
| 625 "-E", "about_credits_file=" + | 624 "-E", "about_credits_file=" + |
| 626 rebase_path(about_credits_file, root_build_dir), | 625 rebase_path(about_credits_file, root_build_dir), |
| (...skipping 30 matching lines...) Expand all Loading... |
| 657 # TODO(GYP) write internal action | 656 # TODO(GYP) write internal action |
| 658 if (false) { #if (is_chrome_branded) { | 657 if (false) { #if (is_chrome_branded) { |
| 659 action("chrome_internal_resources_gen") { | 658 action("chrome_internal_resources_gen") { |
| 660 # TODO(GYP) | 659 # TODO(GYP) |
| 661 } | 660 } |
| 662 } else { | 661 } else { |
| 663 group("chrome_internal_resources_gen") { | 662 group("chrome_internal_resources_gen") { |
| 664 # Empty placeholder. | 663 # Empty placeholder. |
| 665 } | 664 } |
| 666 } | 665 } |
| OLD | NEW |