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

Side by Side Diff: chrome/browser/BUILD.gn

Issue 581383002: Create GN build step for transform_additional_modules_list.py. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which 9 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which
10 # produces a conflict for the "grit" template so we have to only include one. 10 # produces a conflict for the "grit" template so we have to only include one.
(...skipping 662 matching lines...) Expand 10 before | Expand all | Expand 10 after
673 # "depfile" in GN). 673 # "depfile" in GN).
674 outputs = [ about_credits_file ] 674 outputs = [ about_credits_file ]
675 675
676 args = [ 676 args = [
677 "credits", 677 "credits",
678 rebase_path(about_credits_file, root_build_dir), 678 rebase_path(about_credits_file, root_build_dir),
679 ] 679 ]
680 } 680 }
681 681
682 # GYP version: chrome/chrome_resource.gyp:chrome_internal_resources_gen 682 # GYP version: chrome/chrome_resource.gyp:chrome_internal_resources_gen
683 # TODO(GYP) write internal action 683 if (is_chrome_branded) {
684 if (false) { #if (is_chrome_branded) {
685 action("chrome_internal_resources_gen") { 684 action("chrome_internal_resources_gen") {
686 # TODO(GYP) 685 script = "internal/transform_additional_modules_list.py"
686 sources = [ "internal/resources/additional_modules_list.input" ]
687 outputs = [ additional_modules_list_file ]
688 args = rebase_path(sources, root_build_dir) +
689 rebase_path(outputs, root_build_dir)
687 } 690 }
688 } else { 691 } else {
689 group("chrome_internal_resources_gen") { 692 group("chrome_internal_resources_gen") {
690 # Empty placeholder. 693 # Empty placeholder.
691 } 694 }
692 } 695 }
693 696
694 # In GYP this is part of test_support_common. 697 # In GYP this is part of test_support_common.
695 source_set("test_support") { 698 source_set("test_support") {
696 testonly = true 699 testonly = true
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
928 ] 931 ]
929 } 932 }
930 933
931 if (enable_wifi_bootstrapping) { 934 if (enable_wifi_bootstrapping) {
932 sources += [ 935 sources += [
933 "local_discovery/wifi/mock_wifi_manager.cc", 936 "local_discovery/wifi/mock_wifi_manager.cc",
934 "local_discovery/wifi/mock_wifi_manager.h", 937 "local_discovery/wifi/mock_wifi_manager.h",
935 ] 938 ]
936 } 939 }
937 } 940 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698