Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(246)

Side by Side Diff: chrome/BUILD.gn

Issue 2358713002: Adding SwiftShader compilation to Mac (Closed)
Patch Set: Adding fix to unstripped outputs Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « build/toolchain/mac/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 441 matching lines...) Expand 10 before | Expand all | Expand 10 after
452 "$root_out_dir/First Run", 452 "$root_out_dir/First Run",
453 ] 453 ]
454 } 454 }
455 } else if (is_mac) { 455 } else if (is_mac) {
456 chrome_helper_name = chrome_product_full_name + " Helper" 456 chrome_helper_name = chrome_product_full_name + " Helper"
457 chrome_framework_name = chrome_product_full_name + " Framework" 457 chrome_framework_name = chrome_product_full_name + " Framework"
458 458
459 group("chrome") { 459 group("chrome") {
460 deps = [ 460 deps = [
461 ":chrome_app", 461 ":chrome_app",
462 "//third_party/swiftshader",
Robert Sesek 2016/09/21 21:23:43 This doesn't belong on this target, which is just
sugoi 2016/09/21 21:31:22 This code won't land, this is purely for test purp
462 ] 463 ]
463 464
464 data_deps = [ 465 data_deps = [
465 ":chrome_app", 466 ":chrome_app",
466 ] 467 ]
467 468
468 if (debug_devtools) { 469 if (debug_devtools) {
469 deps += [ ":devtools_debug_resources" ] 470 deps += [ ":devtools_debug_resources" ]
470 } 471 }
471 472
(...skipping 1075 matching lines...) Expand 10 before | Expand all | Expand 10 after
1547 "//chrome/app/theme/$branding_path_component/product_logo_48.png", 1548 "//chrome/app/theme/$branding_path_component/product_logo_48.png",
1548 "//chrome/tools/build/linux/chrome-wrapper", 1549 "//chrome/tools/build/linux/chrome-wrapper",
1549 "//third_party/xdg-utils/scripts/xdg-mime", 1550 "//third_party/xdg-utils/scripts/xdg-mime",
1550 "//third_party/xdg-utils/scripts/xdg-settings", 1551 "//third_party/xdg-utils/scripts/xdg-settings",
1551 ] 1552 ]
1552 outputs = [ 1553 outputs = [
1553 "$root_out_dir/{{source_file_part}}", 1554 "$root_out_dir/{{source_file_part}}",
1554 ] 1555 ]
1555 } 1556 }
1556 } 1557 }
OLDNEW
« no previous file with comments | « build/toolchain/mac/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698