| 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("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
| 9 | 9 |
| 10 about_credits_file = "$target_gen_dir/about_credits.html" | 10 about_credits_file = "$target_gen_dir/about_credits.html" |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 "//sync", | 114 "//sync", |
| 115 ] | 115 ] |
| 116 | 116 |
| 117 if (!is_ios) { | 117 if (!is_ios) { |
| 118 sources += rebase_path(gypi_values.chrome_browser_non_ios_sources, | 118 sources += rebase_path(gypi_values.chrome_browser_non_ios_sources, |
| 119 ".", "//chrome") | 119 ".", "//chrome") |
| 120 #TODO(GYP) Add these sources: | 120 #TODO(GYP) Add these sources: |
| 121 # # These files are generated by GRIT. | 121 # # These files are generated by GRIT. |
| 122 # '<(grit_out_dir)/grit/component_extension_resources_map.cc', | 122 # '<(grit_out_dir)/grit/component_extension_resources_map.cc', |
| 123 # '<(grit_out_dir)/grit/theme_resources_map.cc', | 123 # '<(grit_out_dir)/grit/theme_resources_map.cc', |
| 124 # '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/grit/ui_resources_map.c
c', | 124 # '<(SHARED_INTERMEDIATE_DIR)/ui/resources/grit/ui_resources_map.cc', |
| 125 # | 125 # |
| 126 # # This file is generated by | 126 # # This file is generated by |
| 127 # # chrome/browser/metrics/variations/generate_resources_map.py | 127 # # chrome/browser/metrics/variations/generate_resources_map.py |
| 128 # '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/metrics/variations/gener
ated_resources_map.cc', | 128 # '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/metrics/variations/gener
ated_resources_map.cc', |
| 129 | 129 |
| 130 # TODO(GYP) Also add these nacl_defines to direct dependents. | 130 # TODO(GYP) Also add these nacl_defines to direct dependents. |
| 131 #defines = nacl_defines | 131 #defines = nacl_defines |
| 132 | 132 |
| 133 # TODO(GYP) remove this when the real webrtc target is used below. | 133 # TODO(GYP) remove this when the real webrtc target is used below. |
| 134 configs += [ "//content:webrtc_stub_config" ] | 134 configs += [ "//content:webrtc_stub_config" ] |
| (...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 651 # TODO(GYP) write internal action | 651 # TODO(GYP) write internal action |
| 652 if (false) { #if (is_chrome_branded) { | 652 if (false) { #if (is_chrome_branded) { |
| 653 action("chrome_internal_resources_gen") { | 653 action("chrome_internal_resources_gen") { |
| 654 # TODO(GYP) | 654 # TODO(GYP) |
| 655 } | 655 } |
| 656 } else { | 656 } else { |
| 657 group("chrome_internal_resources_gen") { | 657 group("chrome_internal_resources_gen") { |
| 658 # Empty placeholder. | 658 # Empty placeholder. |
| 659 } | 659 } |
| 660 } | 660 } |
| OLD | NEW |