| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/sanitizers/sanitizers.gni") | 7 import("//build/config/sanitizers/sanitizers.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//ui/base/ui_features.gni") | 10 import("//ui/base/ui_features.gni") |
| (...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 517 | 517 |
| 518 sources -= [ | 518 sources -= [ |
| 519 "cursor/image_cursors.cc", | 519 "cursor/image_cursors.cc", |
| 520 "cursor/image_cursors.h", | 520 "cursor/image_cursors.h", |
| 521 "dragdrop/drag_utils.cc", | 521 "dragdrop/drag_utils.cc", |
| 522 "dragdrop/drag_utils.h", | 522 "dragdrop/drag_utils.h", |
| 523 ] | 523 ] |
| 524 | 524 |
| 525 libs += [ | 525 libs += [ |
| 526 "Accelerate.framework", | 526 "Accelerate.framework", |
| 527 "AppKit.framework", |
| 527 "AudioUnit.framework", | 528 "AudioUnit.framework", |
| 528 "Carbon.framework", | 529 "Carbon.framework", |
| 529 "CoreVideo.framework", | 530 "CoreVideo.framework", |
| 531 "Foundation.framework", |
| 530 ] | 532 ] |
| 531 } | 533 } |
| 532 | 534 |
| 533 if (use_aura) { | 535 if (use_aura) { |
| 534 if (is_android) { | 536 if (is_android) { |
| 535 sources += [ "cursor/cursor_loader_android.cc" ] | 537 sources += [ "cursor/cursor_loader_android.cc" ] |
| 536 } | 538 } |
| 537 } | 539 } |
| 538 if (use_ozone) { | 540 if (use_ozone) { |
| 539 sources += [ | 541 sources += [ |
| (...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 950 if (is_mac) { | 952 if (is_mac) { |
| 951 mac_framework_bundle("ui_unittests_framework") { | 953 mac_framework_bundle("ui_unittests_framework") { |
| 952 testonly = true | 954 testonly = true |
| 953 deps = [ | 955 deps = [ |
| 954 "//ui/resources:ui_test_pak_bundle_data", | 956 "//ui/resources:ui_test_pak_bundle_data", |
| 955 ] | 957 ] |
| 956 info_plist = "test/framework-Info.plist" | 958 info_plist = "test/framework-Info.plist" |
| 957 output_name = "ui_unittests Framework" | 959 output_name = "ui_unittests Framework" |
| 958 } | 960 } |
| 959 } | 961 } |
| OLD | NEW |