| 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/repack.gni") | 7 import("//tools/grit/repack.gni") |
| 8 import("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
| 9 if (is_android) { | 9 if (is_android) { |
| 10 import("//build/config/android/config.gni") | 10 import("//build/config/android/config.gni") |
| (...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 445 if (use_x11) { | 445 if (use_x11) { |
| 446 deps += [ ":copy_x11_fonts" ] | 446 deps += [ ":copy_x11_fonts" ] |
| 447 } | 447 } |
| 448 if (is_android) { | 448 if (is_android) { |
| 449 deps += [ ":copy_android_fonts" ] | 449 deps += [ ":copy_android_fonts" ] |
| 450 } | 450 } |
| 451 } | 451 } |
| 452 | 452 |
| 453 repack("pak") { | 453 repack("pak") { |
| 454 sources = [ | 454 sources = [ |
| 455 "$root_gen_dir/blink/public/resources/blink_resources_100_percent.pak", | 455 "$root_gen_dir/blink/public/resources/blink_resources.pak", |
| 456 "$root_gen_dir/content/app/resources/content_resources_100_percent.pak", | 456 "$root_gen_dir/content/app/resources/content_resources_100_percent.pak", |
| 457 "$root_gen_dir/content/app/strings/content_strings_en-US.pak", | 457 "$root_gen_dir/content/app/strings/content_strings_en-US.pak", |
| 458 "$root_gen_dir/content/browser/tracing/tracing_resources.pak", | 458 "$root_gen_dir/content/browser/tracing/tracing_resources.pak", |
| 459 "$root_gen_dir/content/content_resources.pak", | 459 "$root_gen_dir/content/content_resources.pak", |
| 460 "$root_gen_dir/content/shell/shell_resources.pak", | 460 "$root_gen_dir/content/shell/shell_resources.pak", |
| 461 "$root_gen_dir/net/net_resources.pak", | 461 "$root_gen_dir/net/net_resources.pak", |
| 462 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak", | 462 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak", |
| 463 "$root_gen_dir/ui/resources/webui_resources.pak", | 463 "$root_gen_dir/ui/resources/webui_resources.pak", |
| 464 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", | 464 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", |
| 465 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", | 465 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 520 # image diff rather than having content shell depend on it. | 520 # image diff rather than having content shell depend on it. |
| 521 datadeps = [ | 521 datadeps = [ |
| 522 "//tools/imagediff($host_toolchain)", | 522 "//tools/imagediff($host_toolchain)", |
| 523 ] | 523 ] |
| 524 } | 524 } |
| 525 } | 525 } |
| 526 } else { | 526 } else { |
| 527 group("content_shell") { | 527 group("content_shell") { |
| 528 } | 528 } |
| 529 } | 529 } |
| OLD | NEW |