| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//build/split_static_library.gni") | 9 import("//build/split_static_library.gni") |
| 10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
| (...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 "//chrome") | 305 "//chrome") |
| 306 if (enable_supervised_users) { | 306 if (enable_supervised_users) { |
| 307 sources += rebase_path( | 307 sources += rebase_path( |
| 308 gypi_values.chrome_browser_supervised_user_android_java_ui_sourc
es, | 308 gypi_values.chrome_browser_supervised_user_android_java_ui_sourc
es, |
| 309 ".", | 309 ".", |
| 310 "//chrome") | 310 "//chrome") |
| 311 } | 311 } |
| 312 } | 312 } |
| 313 | 313 |
| 314 deps += [ | 314 deps += [ |
| 315 ":resource_prefetch_predictor_proto", |
| 315 "//cc", | 316 "//cc", |
| 316 "//chrome/app/theme:theme_resources", | 317 "//chrome/app/theme:theme_resources", |
| 317 "//chrome/browser/devtools", | 318 "//chrome/browser/devtools", |
| 318 "//chrome/browser/metrics/variations:chrome_ui_string_overrider_factory", | 319 "//chrome/browser/metrics/variations:chrome_ui_string_overrider_factory", |
| 319 "//chrome/browser/resources:component_extension_resources", | 320 "//chrome/browser/resources:component_extension_resources", |
| 320 "//chrome/common/net", | 321 "//chrome/common/net", |
| 321 "//chrome/installer/util:with_no_strings", | 322 "//chrome/installer/util:with_no_strings", |
| 322 "//components/about_handler", | 323 "//components/about_handler", |
| 323 "//components/app_modal", | 324 "//components/app_modal", |
| 324 "//components/autofill/content/browser", | 325 "//components/autofill/content/browser", |
| (...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 981 deps = [ | 982 deps = [ |
| 982 "//base", | 983 "//base", |
| 983 "//chrome/common:constants", | 984 "//chrome/common:constants", |
| 984 ] | 985 ] |
| 985 if (enable_configuration_policy) { | 986 if (enable_configuration_policy) { |
| 986 deps += [ "//chrome/browser/policy:path_parser" ] | 987 deps += [ "//chrome/browser/policy:path_parser" ] |
| 987 } | 988 } |
| 988 } | 989 } |
| 989 } | 990 } |
| 990 | 991 |
| 992 if (!is_ios) { |
| 993 proto_library("resource_prefetch_predictor_proto") { |
| 994 sources = [ |
| 995 "predictors/resource_prefetch_predictor.proto", |
| 996 ] |
| 997 } |
| 998 } |
| 999 |
| 991 # GYP version: chrome/chrome_resources.gyp:chrome_resources | 1000 # GYP version: chrome/chrome_resources.gyp:chrome_resources |
| 992 # (generate_browser_resources action) | 1001 # (generate_browser_resources action) |
| 993 grit("resources") { | 1002 grit("resources") { |
| 994 source = "browser_resources.grd" | 1003 source = "browser_resources.grd" |
| 995 defines = chrome_grit_defines | 1004 defines = chrome_grit_defines |
| 996 output_dir = "$root_gen_dir/chrome" | 1005 output_dir = "$root_gen_dir/chrome" |
| 997 outputs = [ | 1006 outputs = [ |
| 998 "grit/browser_resources.h", | 1007 "grit/browser_resources.h", |
| 999 "browser_resources.pak", | 1008 "browser_resources.pak", |
| 1000 ] | 1009 ] |
| (...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1355 # linking all of the test support. | 1364 # linking all of the test support. |
| 1356 static_library("pepper_cdm_test_constants") { | 1365 static_library("pepper_cdm_test_constants") { |
| 1357 testonly = true | 1366 testonly = true |
| 1358 visibility = [ "//chrome/*" ] | 1367 visibility = [ "//chrome/*" ] |
| 1359 sources = [ | 1368 sources = [ |
| 1360 "media/pepper_cdm_test_constants.cc", | 1369 "media/pepper_cdm_test_constants.cc", |
| 1361 "media/pepper_cdm_test_constants.h", | 1370 "media/pepper_cdm_test_constants.h", |
| 1362 ] | 1371 ] |
| 1363 } | 1372 } |
| 1364 } | 1373 } |
| OLD | NEW |