| 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/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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |