| 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 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 381 | 381 |
| 382 if (use_aura) { | 382 if (use_aura) { |
| 383 deps += [ | 383 deps += [ |
| 384 "//ui/aura:aura_unittests", | 384 "//ui/aura:aura_unittests", |
| 385 "//ui/aura:bench", | 385 "//ui/aura:bench", |
| 386 "//ui/aura:demo", | 386 "//ui/aura:demo", |
| 387 ] | 387 ] |
| 388 } | 388 } |
| 389 | 389 |
| 390 if (use_x11) { | 390 if (use_x11) { |
| 391 deps += [ "//media:player_x11" ] | |
| 392 if (target_cpu != "arm") { | 391 if (target_cpu != "arm") { |
| 393 deps += [ "//gpu/tools/compositor_model_bench" ] | 392 deps += [ "//gpu/tools/compositor_model_bench" ] |
| 394 } | 393 } |
| 395 } | 394 } |
| 396 } | 395 } |
| 397 | 396 |
| 398 if (is_mac) { | 397 if (is_mac) { |
| 399 deps += [ | 398 deps += [ |
| 400 "//breakpad:crash_inspector", | 399 "//breakpad:crash_inspector", |
| 401 "//breakpad:dump_syms", | 400 "//breakpad:dump_syms", |
| (...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 674 | 673 |
| 675 # Note: | 674 # Note: |
| 676 # (*) Fails but failures match GYP build at time of testing. | 675 # (*) Fails but failures match GYP build at time of testing. |
| 677 ] | 676 ] |
| 678 | 677 |
| 679 if (enable_nacl) { | 678 if (enable_nacl) { |
| 680 deps += [ "//components/nacl:nacl_loader_unittests" ] # PASSES 3/28/2015 | 679 deps += [ "//components/nacl:nacl_loader_unittests" ] # PASSES 3/28/2015 |
| 681 } | 680 } |
| 682 } | 681 } |
| 683 } | 682 } |
| OLD | NEW |