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 439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
450 sources = [ | 450 sources = [ |
451 "app/firstRun", | 451 "app/firstRun", |
452 ] | 452 ] |
453 outputs = [ | 453 outputs = [ |
454 "$root_out_dir/First Run", | 454 "$root_out_dir/First Run", |
455 ] | 455 ] |
456 } | 456 } |
457 } else if (is_mac) { | 457 } else if (is_mac) { |
458 chrome_helper_name = chrome_product_full_name + " Helper" | 458 chrome_helper_name = chrome_product_full_name + " Helper" |
459 chrome_framework_name = chrome_product_full_name + " Framework" | 459 chrome_framework_name = chrome_product_full_name + " Framework" |
460 chrome_framework_version = "A" | 460 |
| 461 if (enable_xpc_notifications) { |
| 462 chrome_framework_version = "A" |
| 463 } |
461 | 464 |
462 group("chrome") { | 465 group("chrome") { |
463 deps = [ | 466 deps = [ |
464 ":chrome_app", | 467 ":chrome_app", |
465 ] | 468 ] |
466 | 469 |
467 data_deps = [ | 470 data_deps = [ |
468 ":chrome_app", | 471 ":chrome_app", |
469 ] | 472 ] |
470 | 473 |
(...skipping 1119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1590 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1593 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
1591 "//chrome/tools/build/linux/chrome-wrapper", | 1594 "//chrome/tools/build/linux/chrome-wrapper", |
1592 "//third_party/xdg-utils/scripts/xdg-mime", | 1595 "//third_party/xdg-utils/scripts/xdg-mime", |
1593 "//third_party/xdg-utils/scripts/xdg-settings", | 1596 "//third_party/xdg-utils/scripts/xdg-settings", |
1594 ] | 1597 ] |
1595 outputs = [ | 1598 outputs = [ |
1596 "$root_out_dir/{{source_file_part}}", | 1599 "$root_out_dir/{{source_file_part}}", |
1597 ] | 1600 ] |
1598 } | 1601 } |
1599 } | 1602 } |
OLD | NEW |