| Index: components/test_runner/BUILD.gn
|
| diff --git a/components/test_runner/BUILD.gn b/components/test_runner/BUILD.gn
|
| index e4f8b78fc81dcb282457db838cde0bb2e08d0296..7938f70e63299adc642d87c9d9fc46d27059ef3c 100644
|
| --- a/components/test_runner/BUILD.gn
|
| +++ b/components/test_runner/BUILD.gn
|
| @@ -107,7 +107,6 @@ component("test_runner") {
|
| configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
|
|
|
| deps = [
|
| - ":resources",
|
| "//base:base",
|
| "//base:i18n",
|
| "//cc",
|
| @@ -130,6 +129,10 @@ component("test_runner") {
|
| "//v8",
|
| ]
|
|
|
| + data_deps = [
|
| + ":resources",
|
| + ]
|
| +
|
| if (is_mac) {
|
| libs = [ "AppKit.framework" ]
|
| }
|
| @@ -186,19 +189,19 @@ if (is_mac) {
|
| }
|
|
|
| group("resources") {
|
| - deps = []
|
| + data_deps = []
|
|
|
| if (is_mac) {
|
| - deps += [ ":test_runner_bundle_data" ]
|
| + data_deps += [ ":test_runner_bundle_data" ]
|
| } else {
|
| - deps += [ ":copy_ahem" ]
|
| + data_deps += [ ":copy_ahem" ]
|
| }
|
|
|
| if (use_x11) {
|
| - deps += [ ":copy_x11_fonts" ]
|
| + data_deps += [ ":copy_x11_fonts" ]
|
| }
|
| if (is_android) {
|
| - deps += [ ":copy_android_fonts" ]
|
| + data_deps += [ ":copy_android_fonts" ]
|
| }
|
| }
|
|
|
|
|