| 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/compiler/pgo/pgo.gni") | 8 import("//build/config/compiler/pgo/pgo.gni") |
| 9 import("//build/config/features.gni") | 9 import("//build/config/features.gni") |
| 10 import("//build/config/locales.gni") | 10 import("//build/config/locales.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 | 460 chrome_framework_version = "A" |
| 461 if (enable_xpc_notifications) { | |
| 462 chrome_framework_version = "A" | |
| 463 } | |
| 464 | 461 |
| 465 group("chrome") { | 462 group("chrome") { |
| 466 deps = [ | 463 deps = [ |
| 467 ":chrome_app", | 464 ":chrome_app", |
| 468 ] | 465 ] |
| 469 | 466 |
| 470 data_deps = [ | 467 data_deps = [ |
| 471 ":chrome_app", | 468 ":chrome_app", |
| 472 ] | 469 ] |
| 473 | 470 |
| (...skipping 1139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1613 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1610 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1614 "//chrome/tools/build/linux/chrome-wrapper", | 1611 "//chrome/tools/build/linux/chrome-wrapper", |
| 1615 "//third_party/xdg-utils/scripts/xdg-mime", | 1612 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1616 "//third_party/xdg-utils/scripts/xdg-settings", | 1613 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1617 ] | 1614 ] |
| 1618 outputs = [ | 1615 outputs = [ |
| 1619 "$root_out_dir/{{source_file_part}}", | 1616 "$root_out_dir/{{source_file_part}}", |
| 1620 ] | 1617 ] |
| 1621 } | 1618 } |
| 1622 } | 1619 } |
| OLD | NEW |