OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//tools/grit/grit_rule.gni") | 7 import("//tools/grit/grit_rule.gni") |
8 | 8 |
9 executable("chrome") { | 9 executable("chrome") { |
10 sources = [ | 10 sources = [ |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 script = "//tools/licenses.py" | 191 script = "//tools/licenses.py" |
192 outputs = [ about_credits_file ] | 192 outputs = [ about_credits_file ] |
193 | 193 |
194 # This script is impossible to write proper input dependencies for because it | 194 # This script is impossible to write proper input dependencies for because it |
195 # basically greps the source tree for third_party directories. If a directory | 195 # basically greps the source tree for third_party directories. If a directory |
196 # is added or removed, it will change the result, but there is no way to | 196 # is added or removed, it will change the result, but there is no way to |
197 # express this as a build dependency. We approximate this by depending on | 197 # express this as a build dependency. We approximate this by depending on |
198 # the last change file to force an update whenever the code is updated. | 198 # the last change file to force an update whenever the code is updated. |
199 source_prereqs = [ "//build/util/LASTCHANGE" ] | 199 source_prereqs = [ "//build/util/LASTCHANGE" ] |
200 | 200 |
201 hard_dep = true | |
202 | |
203 args = [ "credits", build_relative_about_credits_file ] | 201 args = [ "credits", build_relative_about_credits_file ] |
204 } | 202 } |
205 | 203 |
206 # Resources -------------------------------------------------------------------- | 204 # Resources -------------------------------------------------------------------- |
207 | 205 |
208 #group("chrome_resources") { | 206 #group("chrome_resources") { |
209 # deps = [ | 207 # deps = [ |
210 # ":browser_resources", | 208 # ":browser_resources", |
211 # ":common_resources", | 209 # ":common_resources", |
212 # ":renderer_resources", | 210 # ":renderer_resources", |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
296 # ":theme_resources_gen", | 294 # ":theme_resources_gen", |
297 # #"//ui:ui_resources", | 295 # #"//ui:ui_resources", |
298 # ] | 296 # ] |
299 #} | 297 #} |
300 # | 298 # |
301 ## TODO(brettw) rename "app_theme_resources" or something when we don't support | 299 ## TODO(brettw) rename "app_theme_resources" or something when we don't support |
302 ## GYP any more. This name is required to match the GYP build. | 300 ## GYP any more. This name is required to match the GYP build. |
303 #grit("theme_resources_gen") { | 301 #grit("theme_resources_gen") { |
304 # source = "app/theme/theme_resources.grd" | 302 # source = "app/theme/theme_resources.grd" |
305 #} | 303 #} |
OLD | NEW |