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

Side by Side Diff: chrome/browser/BUILD.gn

Issue 407093015: GN: Make chrome/{browser,common,renderer} compile on mac (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 | Annotate | Revision Log
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/config/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//tools/grit/grit_rule.gni") 8 import("//tools/grit/grit_rule.gni")
9 9
10 about_credits_file = "$target_gen_dir/about_credits.html" 10 about_credits_file = "$target_gen_dir/about_credits.html"
(...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after
460 "//components/usb_service", 460 "//components/usb_service",
461 "//components/web_modal", 461 "//components/web_modal",
462 ] 462 ]
463 } else { 463 } else {
464 sources += rebase_path(gypi_values.chrome_browser_non_android_sources, 464 sources += rebase_path(gypi_values.chrome_browser_non_android_sources,
465 ".", "//chrome") 465 ".", "//chrome")
466 } 466 }
467 467
468 if (is_mac) { 468 if (is_mac) {
469 deps += [ 469 deps += [
470 #"../third_party/google_toolbox_for_mac/google_toolbox_for_mac.gyp:google_ toolbox_for_mac", TODO(GYP) 470 "//third_party/google_toolbox_for_mac",
471 #"../third_party/mozilla/mozilla.gyp:mozilla", TODO(GYP) 471 #"../third_party/mozilla/mozilla.gyp:mozilla", TODO(GYP)
472 ] 472 ]
473 libs += [ 473 libs += [
474 "Accelerate.framework", 474 "Accelerate.framework",
475 "AddressBook.framework", 475 "AddressBook.framework",
476 "AudioUnit.framework", 476 "AudioUnit.framework",
477 "DiskArbitration.framework", 477 "DiskArbitration.framework",
478 "IOKit.framework", 478 "IOKit.framework",
479 "ImageCaptureCore.framework", 479 "ImageCaptureCore.framework",
480 "OpenGL.framework", 480 "OpenGL.framework",
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
655 # TODO(GYP) write internal action 655 # TODO(GYP) write internal action
656 if (false) { #if (is_chrome_branded) { 656 if (false) { #if (is_chrome_branded) {
657 action("chrome_internal_resources_gen") { 657 action("chrome_internal_resources_gen") {
658 # TODO(GYP) 658 # TODO(GYP)
659 } 659 }
660 } else { 660 } else {
661 group("chrome_internal_resources_gen") { 661 group("chrome_internal_resources_gen") {
662 # Empty placeholder. 662 # Empty placeholder.
663 } 663 }
664 } 664 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698