| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/chrome_build.gni") | 6 import("//build/config/chrome_build.gni") |
| 7 import("//build/config/compiler/compiler.gni") | 7 import("//build/config/compiler/compiler.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/locales.gni") | 9 import("//build/config/locales.gni") |
| 10 import("//build/config/sanitizers/sanitizers.gni") | 10 import("//build/config/sanitizers/sanitizers.gni") |
| (...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 438 } | 438 } |
| 439 } | 439 } |
| 440 copy("copy_first_run") { | 440 copy("copy_first_run") { |
| 441 sources = [ | 441 sources = [ |
| 442 "app/firstRun", | 442 "app/firstRun", |
| 443 ] | 443 ] |
| 444 outputs = [ | 444 outputs = [ |
| 445 "$root_out_dir/First Run", | 445 "$root_out_dir/First Run", |
| 446 ] | 446 ] |
| 447 } | 447 } |
| 448 shared_library("eventlog_provider") { | |
| 449 sources = [ | |
| 450 "$root_gen_dir/base/win/eventlog_messages.rc", | |
| 451 ] | |
| 452 | |
| 453 ldflags = [ "-noentry" ] | |
| 454 | |
| 455 deps = [ | |
| 456 "//base/win:eventlog_messages", | |
| 457 ] | |
| 458 } | |
| 459 } else if (is_mac) { | 448 } else if (is_mac) { |
| 460 chrome_helper_name = chrome_product_full_name + " Helper" | 449 chrome_helper_name = chrome_product_full_name + " Helper" |
| 461 chrome_framework_name = chrome_product_full_name + " Framework" | 450 chrome_framework_name = chrome_product_full_name + " Framework" |
| 462 | 451 |
| 463 if (enable_xpc_notifications) { | 452 if (enable_xpc_notifications) { |
| 464 chrome_framework_version = "A" | 453 chrome_framework_version = "A" |
| 465 } | 454 } |
| 466 | 455 |
| 467 group("chrome") { | 456 group("chrome") { |
| 468 deps = [ | 457 deps = [ |
| (...skipping 1126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1595 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1584 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1596 "//chrome/tools/build/linux/chrome-wrapper", | 1585 "//chrome/tools/build/linux/chrome-wrapper", |
| 1597 "//third_party/xdg-utils/scripts/xdg-mime", | 1586 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1598 "//third_party/xdg-utils/scripts/xdg-settings", | 1587 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1599 ] | 1588 ] |
| 1600 outputs = [ | 1589 outputs = [ |
| 1601 "$root_out_dir/{{source_file_part}}", | 1590 "$root_out_dir/{{source_file_part}}", |
| 1602 ] | 1591 ] |
| 1603 } | 1592 } |
| 1604 } | 1593 } |
| OLD | NEW |