| 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 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 deps += [ | 368 deps += [ |
| 369 "//ui/aura:aura_unittests", | 369 "//ui/aura:aura_unittests", |
| 370 "//ui/aura:bench", | 370 "//ui/aura:bench", |
| 371 "//ui/aura:demo", | 371 "//ui/aura:demo", |
| 372 ] | 372 ] |
| 373 } | 373 } |
| 374 | 374 |
| 375 if (use_x11) { | 375 if (use_x11) { |
| 376 deps += [ "//media:player_x11" ] | 376 deps += [ "//media:player_x11" ] |
| 377 if (target_cpu != "arm") { | 377 if (target_cpu != "arm") { |
| 378 deps += [ "//gpu:compositor_model_bench" ] | 378 deps += [ "//gpu/tools/compositor_model_bench" ] |
| 379 } | 379 } |
| 380 } | 380 } |
| 381 } | 381 } |
| 382 | 382 |
| 383 if (is_mac) { | 383 if (is_mac) { |
| 384 deps += [ | 384 deps += [ |
| 385 "//breakpad:crash_inspector", | 385 "//breakpad:crash_inspector", |
| 386 "//breakpad:dump_syms", | 386 "//breakpad:dump_syms", |
| 387 "//breakpad:symupload", | 387 "//breakpad:symupload", |
| 388 "//third_party/apple_sample_code", | 388 "//third_party/apple_sample_code", |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 655 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 2/25/2015 | 655 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 2/25/2015 |
| 656 "//ui/views:views_unittests", # PASSES (*) 2/25/2015 | 656 "//ui/views:views_unittests", # PASSES (*) 2/25/2015 |
| 657 "//ui/wm:wm_unittests", # PASSES 2/25/2015 | 657 "//ui/wm:wm_unittests", # PASSES 2/25/2015 |
| 658 "//url:url_unittests", # PASSES 2/25/2015 | 658 "//url:url_unittests", # PASSES 2/25/2015 |
| 659 | 659 |
| 660 # Note: | 660 # Note: |
| 661 # (*) Fails but failures match GYP build at time of testing. | 661 # (*) Fails but failures match GYP build at time of testing. |
| 662 ] | 662 ] |
| 663 } | 663 } |
| 664 } | 664 } |
| OLD | NEW |