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 575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
586 ] | 586 ] |
587 deps -= [ | 587 deps -= [ |
588 "//crypto:crypto_unittests", # TODO(GYP) | 588 "//crypto:crypto_unittests", # TODO(GYP) |
589 "//net:net_unittests", # TODO(GYP) | 589 "//net:net_unittests", # TODO(GYP) |
590 ] | 590 ] |
591 } else if (!is_android && !is_ios) { | 591 } else if (!is_android && !is_ios) { |
592 deps += [ "//breakpad:symupload" ] | 592 deps += [ "//breakpad:symupload" ] |
593 } | 593 } |
594 | 594 |
595 if (!is_ios) { | 595 if (!is_ios) { |
596 deps += [ | 596 deps += [ "//gpu/skia_runner:skia_runner" ] |
597 "//gpu/skia_runner:skia_runner", | |
598 "//gpu/command_buffer_gles2:command_buffer_gles2", | |
599 ] | |
600 } | 597 } |
601 } | 598 } |
602 | 599 |
603 group("gn_only") { | 600 group("gn_only") { |
604 testonly = true | 601 testonly = true |
605 | 602 |
606 deps = [] | 603 deps = [] |
607 | 604 |
608 if (!is_ios) { | 605 if (!is_ios) { |
609 deps += [ "//mandoline:all" ] | 606 deps += [ "//mandoline:all" ] |
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
933 "//ui/views:views_unittests", # TooltipControllerTest failures | 930 "//ui/views:views_unittests", # TooltipControllerTest failures |
934 "//ui/wm:wm_unittests", # PASSES 4/21/2015 | 931 "//ui/wm:wm_unittests", # PASSES 4/21/2015 |
935 "//url:url_unittests", # PASSES 4/17/2015 | 932 "//url:url_unittests", # PASSES 4/17/2015 |
936 | 933 |
937 # TODO(GYP) nacl_integration | 934 # TODO(GYP) nacl_integration |
938 # TODO(GYP) telemetry_perf_unittests | 935 # TODO(GYP) telemetry_perf_unittests |
939 # TODO(GYP) telemetry_unittests | 936 # TODO(GYP) telemetry_unittests |
940 ] | 937 ] |
941 } | 938 } |
942 } | 939 } |
OLD | NEW |