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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
7 import("//build/config/compiler/pgo/pgo.gni") | 7 import("//build/config/compiler/pgo/pgo.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 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
511 } | 511 } |
512 } | 512 } |
513 copy("copy_first_run") { | 513 copy("copy_first_run") { |
514 sources = [ | 514 sources = [ |
515 "app/firstRun", | 515 "app/firstRun", |
516 ] | 516 ] |
517 outputs = [ | 517 outputs = [ |
518 "$root_out_dir/First Run", | 518 "$root_out_dir/First Run", |
519 ] | 519 ] |
520 } | 520 } |
| 521 process_version_rc_template("eventlog_provider_dll_version") { |
| 522 sources = [ |
| 523 "//base/win/eventlog_provider.ver", |
| 524 ] |
| 525 output = "$target_gen_dir/eventlog_provider_dll_version.rc" |
| 526 } |
| 527 shared_library("eventlog_provider") { |
| 528 sources = [ |
| 529 "$root_gen_dir/base/win/eventlog_messages.rc", |
| 530 "//base/win/eventlog_provider.cc", |
| 531 ] |
| 532 |
| 533 if (!is_asan) { |
| 534 ldflags = [ "/NOENTRY" ] |
| 535 } |
| 536 |
| 537 deps = [ |
| 538 ":eventlog_provider_dll_version", |
| 539 "//base/win:eventlog_messages", |
| 540 ] |
| 541 } |
521 } else if (is_mac) { | 542 } else if (is_mac) { |
522 chrome_helper_name = chrome_product_full_name + " Helper" | 543 chrome_helper_name = chrome_product_full_name + " Helper" |
523 chrome_framework_name = chrome_product_full_name + " Framework" | 544 chrome_framework_name = chrome_product_full_name + " Framework" |
524 chrome_framework_version = "A" | 545 chrome_framework_version = "A" |
525 | 546 |
526 group("chrome") { | 547 group("chrome") { |
527 deps = [ | 548 deps = [ |
528 ":chrome_app", | 549 ":chrome_app", |
529 ] | 550 ] |
530 | 551 |
(...skipping 1285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1816 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1837 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
1817 "//chrome/tools/build/linux/chrome-wrapper", | 1838 "//chrome/tools/build/linux/chrome-wrapper", |
1818 "//third_party/xdg-utils/scripts/xdg-mime", | 1839 "//third_party/xdg-utils/scripts/xdg-mime", |
1819 "//third_party/xdg-utils/scripts/xdg-settings", | 1840 "//third_party/xdg-utils/scripts/xdg-settings", |
1820 ] | 1841 ] |
1821 outputs = [ | 1842 outputs = [ |
1822 "$root_out_dir/{{source_file_part}}", | 1843 "$root_out_dir/{{source_file_part}}", |
1823 ] | 1844 ] |
1824 } | 1845 } |
1825 } | 1846 } |
OLD | NEW |