| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 # This is the root build file for GN. GN will start processing by loading this | 5 # This is the root build file for GN. GN will start processing by loading this |
| 6 # file, and recursively load all dependencies until all dependencies are either | 6 # file, and recursively load all dependencies until all dependencies are either |
| 7 # resolved or known not to exist (which will cause the build to fail). So if | 7 # resolved or known not to exist (which will cause the build to fail). So if |
| 8 # you add a new build file, there must be some path of dependencies from this | 8 # you add a new build file, there must be some path of dependencies from this |
| 9 # file to your new one or GN won't know about it. | 9 # file to your new one or GN won't know about it. |
| 10 | 10 |
| (...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 if (toolkit_views) { | 321 if (toolkit_views) { |
| 322 deps += [ | 322 deps += [ |
| 323 "//ui/views:views_unittests", | 323 "//ui/views:views_unittests", |
| 324 "//ui/views/examples:views_examples_exe", | 324 "//ui/views/examples:views_examples_exe", |
| 325 "//ui/views/examples:views_examples_with_content_exe", | 325 "//ui/views/examples:views_examples_with_content_exe", |
| 326 ] | 326 ] |
| 327 } | 327 } |
| 328 | 328 |
| 329 if (use_aura) { | 329 if (use_aura) { |
| 330 deps += [ | 330 deps += [ |
| 331 "//ash:ash_content_unittests", |
| 331 "//ash:ash_shell_with_content", | 332 "//ash:ash_shell_with_content", |
| 332 "//ash:ash_unittests", | 333 "//ash:ash_unittests", |
| 333 "//ui/app_list:app_list_unittests", | 334 "//ui/app_list:app_list_unittests", |
| 334 "//ui/app_list/presenter:app_list_presenter_unittests", | 335 "//ui/app_list/presenter:app_list_presenter_unittests", |
| 335 "//ui/aura:aura_unittests", | 336 "//ui/aura:aura_unittests", |
| 336 "//ui/aura:demo", | 337 "//ui/aura:demo", |
| 337 "//ui/wm:wm_unittests", | 338 "//ui/wm:wm_unittests", |
| 338 ] | 339 ] |
| 339 } | 340 } |
| 340 | 341 |
| (...skipping 787 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1128 "//ui/display:display_unittests", | 1129 "//ui/display:display_unittests", |
| 1129 "//ui/events:events_unittests", | 1130 "//ui/events:events_unittests", |
| 1130 "//ui/gfx:gfx_unittests", | 1131 "//ui/gfx:gfx_unittests", |
| 1131 "//ui/gl:gl_unittests", | 1132 "//ui/gl:gl_unittests", |
| 1132 "//ui/keyboard:keyboard_unittests", | 1133 "//ui/keyboard:keyboard_unittests", |
| 1133 "//ui/touch_selection:ui_touch_selection_unittests", | 1134 "//ui/touch_selection:ui_touch_selection_unittests", |
| 1134 "//url:url_unittests", | 1135 "//url:url_unittests", |
| 1135 ] | 1136 ] |
| 1136 } | 1137 } |
| 1137 } | 1138 } |
| OLD | NEW |