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

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: GetWindowKeyboardShortcutTable is now shared between Cocoa and MacViews. Created 4 years, 1 month 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
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 3392 matching lines...) Expand 10 before | Expand all | Expand 10 after
3403 "Accelerate.framework", 3403 "Accelerate.framework",
3404 "AddressBook.framework", 3404 "AddressBook.framework",
3405 "AudioUnit.framework", 3405 "AudioUnit.framework",
3406 "DiskArbitration.framework", 3406 "DiskArbitration.framework",
3407 "IOKit.framework", 3407 "IOKit.framework",
3408 "ImageCaptureCore.framework", 3408 "ImageCaptureCore.framework",
3409 "OpenGL.framework", 3409 "OpenGL.framework",
3410 "QuartzCore.framework", 3410 "QuartzCore.framework",
3411 "SecurityInterface.framework", 3411 "SecurityInterface.framework",
3412 ] 3412 ]
3413
3414 if (mac_views_browser) {
3415 sources += [ "global_keyboard_shortcuts_views_mac.mm" ]
3416 } else {
3417 sources += [ "global_keyboard_shortcuts_cocoa_mac.mm" ]
3418 }
3413 } 3419 }
3414 3420
3415 if (enable_rlz) { 3421 if (enable_rlz) {
3416 deps += [ ":rlz" ] 3422 deps += [ ":rlz" ]
3417 } 3423 }
3418 3424
3419 if (is_win) { 3425 if (is_win) {
3420 sources += [ 3426 sources += [
3421 "downgrade/user_data_downgrade.cc", 3427 "downgrade/user_data_downgrade.cc",
3422 "downgrade/user_data_downgrade.h", 3428 "downgrade/user_data_downgrade.h",
(...skipping 936 matching lines...) Expand 10 before | Expand all | Expand 10 after
4359 # linking all of the test support. 4365 # linking all of the test support.
4360 static_library("pepper_cdm_test_constants") { 4366 static_library("pepper_cdm_test_constants") {
4361 testonly = true 4367 testonly = true
4362 visibility = [ "//chrome/*" ] 4368 visibility = [ "//chrome/*" ]
4363 sources = [ 4369 sources = [
4364 "media/pepper_cdm_test_constants.cc", 4370 "media/pepper_cdm_test_constants.cc",
4365 "media/pepper_cdm_test_constants.h", 4371 "media/pepper_cdm_test_constants.h",
4366 ] 4372 ]
4367 } 4373 }
4368 } 4374 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/global_keyboard_shortcuts_cocoa_mac.mm » ('j') | chrome/browser/global_keyboard_shortcuts_mac.mm » ('J')

Powered by Google App Engine
This is Rietveld 408576698