| 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/features.gni") | 5 import("//build/config/features.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 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
| 9 if (is_android) { | 9 if (is_android) { |
| 10 import("//build/config/android/config.gni") | 10 import("//build/config/android/config.gni") |
| (...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 382 if (use_x11) { | 382 if (use_x11) { |
| 383 deps += [ ":copy_x11_fonts" ] | 383 deps += [ ":copy_x11_fonts" ] |
| 384 } | 384 } |
| 385 if (is_android) { | 385 if (is_android) { |
| 386 deps += [ ":copy_android_fonts" ] | 386 deps += [ ":copy_android_fonts" ] |
| 387 } | 387 } |
| 388 } | 388 } |
| 389 | 389 |
| 390 repack("pak") { | 390 repack("pak") { |
| 391 sources = [ | 391 sources = [ |
| 392 "$root_gen_dir/blink/public/resources/blink_resources.pak", |
| 392 "$root_gen_dir/content/app/strings/content_strings_en-US.pak", | 393 "$root_gen_dir/content/app/strings/content_strings_en-US.pak", |
| 393 "$root_gen_dir/content/browser/tracing/tracing_resources.pak", | 394 "$root_gen_dir/content/browser/tracing/tracing_resources.pak", |
| 394 "$root_gen_dir/content/content_resources.pak", | 395 "$root_gen_dir/content/content_resources.pak", |
| 395 "$root_gen_dir/content/shell/shell_resources.pak", | 396 "$root_gen_dir/content/shell/shell_resources.pak", |
| 396 "$root_gen_dir/net/net_resources.pak", | 397 "$root_gen_dir/net/net_resources.pak", |
| 397 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak", | 398 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak", |
| 398 "$root_gen_dir/ui/resources/webui_resources.pak", | 399 "$root_gen_dir/ui/resources/webui_resources.pak", |
| 399 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", | 400 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", |
| 400 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", | 401 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", |
| 401 "$root_gen_dir/webkit/blink_resources.pak", | |
| 402 "$root_gen_dir/webkit/webkit_resources_100_percent.pak", | 402 "$root_gen_dir/webkit/webkit_resources_100_percent.pak", |
| 403 ] | 403 ] |
| 404 | 404 |
| 405 deps = [ | 405 deps = [ |
| 406 ":resources", | 406 ":resources", |
| 407 "//content:resources", | 407 "//content:resources", |
| 408 "//content/app/strings", | 408 "//content/app/strings", |
| 409 "//content/browser/tracing:resources", | 409 "//content/browser/tracing:resources", |
| 410 "//net:net_resources", | 410 "//net:net_resources", |
| 411 "//third_party/WebKit/public:resources", | 411 "//third_party/WebKit/public:resources", |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 454 } | 454 } |
| 455 | 455 |
| 456 if (!is_android || !is_android_webview_build) { | 456 if (!is_android || !is_android_webview_build) { |
| 457 # Some tests rely on this tool. It might be nicer if these tests relied on | 457 # Some tests rely on this tool. It might be nicer if these tests relied on |
| 458 # image diff rather than having content shell depend on it. | 458 # image diff rather than having content shell depend on it. |
| 459 datadeps = [ | 459 datadeps = [ |
| 460 "//tools/imagediff($host_toolchain)", | 460 "//tools/imagediff($host_toolchain)", |
| 461 ] | 461 ] |
| 462 } | 462 } |
| 463 } | 463 } |
| OLD | NEW |