| Index: chrome/BUILD.gn
|
| diff --git a/chrome/BUILD.gn b/chrome/BUILD.gn
|
| index b2d01f34dc370be2638fee9ea3f06599e0b8276b..74a93b5ff840e6aed787694cde991af16b735db8 100644
|
| --- a/chrome/BUILD.gn
|
| +++ b/chrome/BUILD.gn
|
| @@ -152,6 +152,7 @@ if (!is_android && !is_mac) {
|
| deps += [
|
| ":chrome_dll",
|
| ":chrome_exe_version",
|
| + ":copy_first_run",
|
| ":file_pre_reader",
|
| ":visual_elements_resources",
|
| "//base",
|
| @@ -445,6 +446,14 @@ if (is_win) {
|
| }
|
| }
|
| }
|
| + copy("copy_first_run") {
|
| + sources = [
|
| + "app/firstRun",
|
| + ]
|
| + outputs = [
|
| + "$root_out_dir/First Run",
|
| + ]
|
| + }
|
| } else if (is_mac) {
|
| chrome_helper_name = chrome_product_full_name + " Helper"
|
| chrome_framework_name = chrome_product_full_name + " Framework"
|
|
|