| 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/compiler/compiler.gni") | 5 import("//build/config/compiler/compiler.gni") |
| 6 import("//build/config/sanitizers/sanitizers.gni") | 6 import("//build/config/sanitizers/sanitizers.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 | 9 |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 "win/scoped_ole_initializer.cc", | 246 "win/scoped_ole_initializer.cc", |
| 247 "win/scoped_ole_initializer.h", | 247 "win/scoped_ole_initializer.h", |
| 248 "win/shell.cc", | 248 "win/shell.cc", |
| 249 "win/shell.h", | 249 "win/shell.h", |
| 250 "win/touch_input.cc", | 250 "win/touch_input.cc", |
| 251 "win/touch_input.h", | 251 "win/touch_input.h", |
| 252 "win/window_event_target.cc", | 252 "win/window_event_target.cc", |
| 253 "win/window_event_target.h", | 253 "win/window_event_target.h", |
| 254 "window_open_disposition.cc", | 254 "window_open_disposition.cc", |
| 255 "window_open_disposition.h", | 255 "window_open_disposition.h", |
| 256 "window_resize_helper.cc", |
| 257 "window_resize_helper.h", |
| 256 "work_area_watcher_observer.h", | 258 "work_area_watcher_observer.h", |
| 257 ] | 259 ] |
| 258 | 260 |
| 259 if (!is_ios) { | 261 if (!is_ios) { |
| 260 sources += [ | 262 sources += [ |
| 261 "accelerators/accelerator.cc", | 263 "accelerators/accelerator.cc", |
| 262 "accelerators/accelerator.h", | 264 "accelerators/accelerator.h", |
| 263 "accelerators/accelerator_history.cc", | 265 "accelerators/accelerator_history.cc", |
| 264 "accelerators/accelerator_history.h", | 266 "accelerators/accelerator_history.h", |
| 265 "accelerators/accelerator_manager.cc", | 267 "accelerators/accelerator_manager.cc", |
| (...skipping 625 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 891 } | 893 } |
| 892 if (is_mac) { | 894 if (is_mac) { |
| 893 data += [ "$root_out_dir/ui_unittests Framework.framework/" ] | 895 data += [ "$root_out_dir/ui_unittests Framework.framework/" ] |
| 894 | 896 |
| 895 if (is_asan && symbol_level == 0) { | 897 if (is_asan && symbol_level == 0) { |
| 896 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ] | 898 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ] |
| 897 } | 899 } |
| 898 } | 900 } |
| 899 } | 901 } |
| 900 # TODO(GYP) Mac (ui_base_tests_bundle) | 902 # TODO(GYP) Mac (ui_base_tests_bundle) |
| OLD | NEW |