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