| 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 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 "ui_base_export.h", | 260 "ui_base_export.h", |
| 261 "ui_base_exports.cc", | 261 "ui_base_exports.cc", |
| 262 "ui_base_paths.cc", | 262 "ui_base_paths.cc", |
| 263 "ui_base_paths.h", | 263 "ui_base_paths.h", |
| 264 "ui_base_switches.cc", | 264 "ui_base_switches.cc", |
| 265 "ui_base_switches.h", | 265 "ui_base_switches.h", |
| 266 "ui_base_switches_util.cc", | 266 "ui_base_switches_util.cc", |
| 267 "ui_base_switches_util.h", | 267 "ui_base_switches_util.h", |
| 268 "ui_base_types.cc", | 268 "ui_base_types.cc", |
| 269 "ui_base_types.h", | 269 "ui_base_types.h", |
| 270 "ui_metrics_types.h", |
| 270 "user_activity/user_activity_detector.cc", | 271 "user_activity/user_activity_detector.cc", |
| 271 "user_activity/user_activity_detector.h", | 272 "user_activity/user_activity_detector.h", |
| 272 "user_activity/user_activity_observer.h", | 273 "user_activity/user_activity_observer.h", |
| 273 "view_prop.cc", | 274 "view_prop.cc", |
| 274 "view_prop.h", | 275 "view_prop.h", |
| 275 "webui/jstemplate_builder.cc", | 276 "webui/jstemplate_builder.cc", |
| 276 "webui/jstemplate_builder.h", | 277 "webui/jstemplate_builder.h", |
| 277 "webui/web_ui_util.cc", | 278 "webui/web_ui_util.cc", |
| 278 "webui/web_ui_util.h", | 279 "webui/web_ui_util.h", |
| 279 "win/accessibility_ids_win.h", | 280 "win/accessibility_ids_win.h", |
| (...skipping 714 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 994 if (is_mac) { | 995 if (is_mac) { |
| 995 mac_framework_bundle("ui_unittests_framework") { | 996 mac_framework_bundle("ui_unittests_framework") { |
| 996 testonly = true | 997 testonly = true |
| 997 deps = [ | 998 deps = [ |
| 998 "//ui/resources:ui_test_pak_bundle_data", | 999 "//ui/resources:ui_test_pak_bundle_data", |
| 999 ] | 1000 ] |
| 1000 info_plist = "test/framework-Info.plist" | 1001 info_plist = "test/framework-Info.plist" |
| 1001 output_name = "ui_unittests Framework" | 1002 output_name = "ui_unittests Framework" |
| 1002 } | 1003 } |
| 1003 } | 1004 } |
| OLD | NEW |