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 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
435 | 435 |
436 if (use_aura) { | 436 if (use_aura) { |
437 deps += [ | 437 deps += [ |
438 "//ui/aura:aura_unittests", | 438 "//ui/aura:aura_unittests", |
439 "//ui/aura:bench", | 439 "//ui/aura:bench", |
440 "//ui/aura:demo", | 440 "//ui/aura:demo", |
441 ] | 441 ] |
442 } | 442 } |
443 | 443 |
444 if (use_x11) { | 444 if (use_x11) { |
445 deps += [ "//media:player_x11" ] | |
446 if (target_cpu != "arm") { | 445 if (target_cpu != "arm") { |
447 deps += [ "//gpu/tools/compositor_model_bench" ] | 446 deps += [ "//gpu/tools/compositor_model_bench" ] |
448 } | 447 } |
449 } | 448 } |
450 } | 449 } |
451 | 450 |
452 if (is_mac) { | 451 if (is_mac) { |
453 deps += [ | 452 deps += [ |
454 "//breakpad:crash_inspector", | 453 "//breakpad:crash_inspector", |
455 "//breakpad:dump_syms", | 454 "//breakpad:dump_syms", |
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
734 | 733 |
735 # Note: | 734 # Note: |
736 # (*) Fails but failures match GYP build at time of testing. | 735 # (*) Fails but failures match GYP build at time of testing. |
737 ] | 736 ] |
738 | 737 |
739 if (enable_nacl) { | 738 if (enable_nacl) { |
740 deps += [ "//components/nacl:nacl_loader_unittests" ] # PASSES 3/28/2015 | 739 deps += [ "//components/nacl:nacl_loader_unittests" ] # PASSES 3/28/2015 |
741 } | 740 } |
742 } | 741 } |
743 } | 742 } |
OLD | NEW |