| 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 593 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 604 "clipboard/clipboard_aura.h", | 604 "clipboard/clipboard_aura.h", |
| 605 ] | 605 ] |
| 606 } | 606 } |
| 607 } | 607 } |
| 608 | 608 |
| 609 if (is_android || is_ios) { | 609 if (is_android || is_ios) { |
| 610 sources -= [ "device_form_factor_desktop.cc" ] | 610 sources -= [ "device_form_factor_desktop.cc" ] |
| 611 } | 611 } |
| 612 } | 612 } |
| 613 | 613 |
| 614 source_set("test_support") { | 614 static_library("test_support") { |
| 615 testonly = true | 615 testonly = true |
| 616 sources = [ | 616 sources = [ |
| 617 "test/material_design_controller_test_api.cc", | 617 "test/material_design_controller_test_api.cc", |
| 618 "test/material_design_controller_test_api.h", | 618 "test/material_design_controller_test_api.h", |
| 619 "test/ui_controls.h", | 619 "test/ui_controls.h", |
| 620 "test/ui_controls_aura.cc", | 620 "test/ui_controls_aura.cc", |
| 621 "test/ui_controls_internal_win.cc", | 621 "test/ui_controls_internal_win.cc", |
| 622 "test/ui_controls_internal_win.h", | 622 "test/ui_controls_internal_win.h", |
| 623 "test/ui_controls_mac.mm", | 623 "test/ui_controls_mac.mm", |
| 624 "test/ui_controls_win.cc", | 624 "test/ui_controls_win.cc", |
| (...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 949 if (is_mac) { | 949 if (is_mac) { |
| 950 mac_framework_bundle("ui_unittests_framework") { | 950 mac_framework_bundle("ui_unittests_framework") { |
| 951 testonly = true | 951 testonly = true |
| 952 deps = [ | 952 deps = [ |
| 953 "//ui/resources:ui_test_pak_bundle_data", | 953 "//ui/resources:ui_test_pak_bundle_data", |
| 954 ] | 954 ] |
| 955 info_plist = "test/framework-Info.plist" | 955 info_plist = "test/framework-Info.plist" |
| 956 output_name = "ui_unittests Framework" | 956 output_name = "ui_unittests Framework" |
| 957 } | 957 } |
| 958 } | 958 } |
| OLD | NEW |