| 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 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 ] | 292 ] |
| 293 | 293 |
| 294 if (!is_ios) { | 294 if (!is_ios) { |
| 295 sources += [ | 295 sources += [ |
| 296 "accelerators/accelerator.cc", | 296 "accelerators/accelerator.cc", |
| 297 "accelerators/accelerator.h", | 297 "accelerators/accelerator.h", |
| 298 "accelerators/accelerator_history.cc", | 298 "accelerators/accelerator_history.cc", |
| 299 "accelerators/accelerator_history.h", | 299 "accelerators/accelerator_history.h", |
| 300 "accelerators/accelerator_manager.cc", | 300 "accelerators/accelerator_manager.cc", |
| 301 "accelerators/accelerator_manager.h", | 301 "accelerators/accelerator_manager.h", |
| 302 "accelerators/accelerator_manager_delegate.h", |
| 302 "base_window.cc", | 303 "base_window.cc", |
| 303 "base_window.h", | 304 "base_window.h", |
| 304 "clipboard/clipboard.cc", | 305 "clipboard/clipboard.cc", |
| 305 "clipboard/clipboard.h", | 306 "clipboard/clipboard.h", |
| 306 "clipboard/clipboard_constants.cc", | 307 "clipboard/clipboard_constants.cc", |
| 307 "clipboard/clipboard_monitor.cc", | 308 "clipboard/clipboard_monitor.cc", |
| 308 "clipboard/clipboard_monitor.h", | 309 "clipboard/clipboard_monitor.h", |
| 309 "clipboard/clipboard_observer.h", | 310 "clipboard/clipboard_observer.h", |
| 310 "clipboard/custom_data_helper.cc", | 311 "clipboard/custom_data_helper.cc", |
| 311 "clipboard/custom_data_helper.h", | 312 "clipboard/custom_data_helper.h", |
| (...skipping 637 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 949 if (is_mac) { | 950 if (is_mac) { |
| 950 mac_framework_bundle("ui_unittests_framework") { | 951 mac_framework_bundle("ui_unittests_framework") { |
| 951 testonly = true | 952 testonly = true |
| 952 deps = [ | 953 deps = [ |
| 953 "//ui/resources:ui_test_pak_bundle_data", | 954 "//ui/resources:ui_test_pak_bundle_data", |
| 954 ] | 955 ] |
| 955 info_plist = "test/framework-Info.plist" | 956 info_plist = "test/framework-Info.plist" |
| 956 output_name = "ui_unittests Framework" | 957 output_name = "ui_unittests Framework" |
| 957 } | 958 } |
| 958 } | 959 } |
| OLD | NEW |