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

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

Issue 2074643003: MacViews: Views accelerators table should match the Cocoa one. (Closed) Base URL: ssh://bitbucket.browser.yandex-team.ru/chromium/src.git@master
Patch Set: Fix compilation. Created 4 years 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 | « no previous file | chrome/browser/global_keyboard_shortcuts_cocoa_mac.mm » ('j') | 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/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/crypto.gni") 6 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build/split_static_library.gni") 9 import("//build/split_static_library.gni")
10 import("//chrome/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 3433 matching lines...) Expand 10 before | Expand all | Expand 10 after
3444 "Accelerate.framework", 3444 "Accelerate.framework",
3445 "AddressBook.framework", 3445 "AddressBook.framework",
3446 "AudioUnit.framework", 3446 "AudioUnit.framework",
3447 "DiskArbitration.framework", 3447 "DiskArbitration.framework",
3448 "IOKit.framework", 3448 "IOKit.framework",
3449 "ImageCaptureCore.framework", 3449 "ImageCaptureCore.framework",
3450 "OpenGL.framework", 3450 "OpenGL.framework",
3451 "QuartzCore.framework", 3451 "QuartzCore.framework",
3452 "SecurityInterface.framework", 3452 "SecurityInterface.framework",
3453 ] 3453 ]
3454
3455 if (mac_views_browser) {
3456 sources += [ "global_keyboard_shortcuts_views_mac.mm" ]
3457 } else {
3458 sources += [ "global_keyboard_shortcuts_cocoa_mac.mm" ]
3459 }
3454 } 3460 }
3455 3461
3456 if (enable_rlz) { 3462 if (enable_rlz) {
3457 deps += [ ":rlz" ] 3463 deps += [ ":rlz" ]
3458 } 3464 }
3459 3465
3460 if (is_win) { 3466 if (is_win) {
3461 sources += [ 3467 sources += [
3462 "downgrade/user_data_downgrade.cc", 3468 "downgrade/user_data_downgrade.cc",
3463 "downgrade/user_data_downgrade.h", 3469 "downgrade/user_data_downgrade.h",
(...skipping 954 matching lines...) Expand 10 before | Expand all | Expand 10 after
4418 # linking all of the test support. 4424 # linking all of the test support.
4419 static_library("pepper_cdm_test_constants") { 4425 static_library("pepper_cdm_test_constants") {
4420 testonly = true 4426 testonly = true
4421 visibility = [ "//chrome/*" ] 4427 visibility = [ "//chrome/*" ]
4422 sources = [ 4428 sources = [
4423 "media/pepper_cdm_test_constants.cc", 4429 "media/pepper_cdm_test_constants.cc",
4424 "media/pepper_cdm_test_constants.h", 4430 "media/pepper_cdm_test_constants.h",
4425 ] 4431 ]
4426 } 4432 }
4427 } 4433 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/global_keyboard_shortcuts_cocoa_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698