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 450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
461 | 461 |
462 if (!is_debug && !is_component_build) { | 462 if (!is_debug && !is_component_build) { |
463 deps += [ "//chrome/tools/service_discovery_sniffer" ] | 463 deps += [ "//chrome/tools/service_discovery_sniffer" ] |
464 } | 464 } |
465 | 465 |
466 if (toolkit_views) { | 466 if (toolkit_views) { |
467 deps += [ "//ui/app_list:app_list_demo" ] | 467 deps += [ "//ui/app_list:app_list_demo" ] |
468 } | 468 } |
469 | 469 |
470 if (use_x11) { | 470 if (use_x11) { |
471 deps += [ "//media:player_x11" ] | |
472 if (target_cpu != "arm") { | 471 if (target_cpu != "arm") { |
473 deps += [ "//gpu/tools/compositor_model_bench" ] | 472 deps += [ "//gpu/tools/compositor_model_bench" ] |
474 } | 473 } |
475 } | 474 } |
476 } | 475 } |
477 | 476 |
478 if (is_mac) { | 477 if (is_mac) { |
479 deps += [ | 478 deps += [ |
480 "//breakpad:crash_inspector", | 479 "//breakpad:crash_inspector", |
481 "//breakpad:dump_syms", | 480 "//breakpad:dump_syms", |
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
781 | 780 |
782 # Note: | 781 # Note: |
783 # (*) Fails but failures match GYP build at time of testing. | 782 # (*) Fails but failures match GYP build at time of testing. |
784 ] | 783 ] |
785 | 784 |
786 if (enable_nacl) { | 785 if (enable_nacl) { |
787 deps += [ "//components/nacl:nacl_loader_unittests" ] # PASSES 3/28/2015 | 786 deps += [ "//components/nacl:nacl_loader_unittests" ] # PASSES 3/28/2015 |
788 } | 787 } |
789 } | 788 } |
790 } | 789 } |
OLD | NEW |