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 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
572 "//third_party/pdfium/samples:pdfium_diff", | 572 "//third_party/pdfium/samples:pdfium_diff", |
573 "//ui/metro_viewer", | 573 "//ui/metro_viewer", |
574 ] | 574 ] |
575 deps -= [ | 575 deps -= [ |
576 "//crypto:crypto_unittests", # TODO(GYP) | 576 "//crypto:crypto_unittests", # TODO(GYP) |
577 "//net:net_unittests", # TODO(GYP) | 577 "//net:net_unittests", # TODO(GYP) |
578 ] | 578 ] |
579 } else if (!is_android) { | 579 } else if (!is_android) { |
580 deps += [ "//breakpad:symupload" ] | 580 deps += [ "//breakpad:symupload" ] |
581 } | 581 } |
| 582 |
| 583 if (!is_ios) { |
| 584 deps += [ "//gpu/skia_runner:skia_runner" ] |
| 585 } |
582 } | 586 } |
583 | 587 |
584 group("gn_only") { | 588 group("gn_only") { |
585 testonly = true | 589 testonly = true |
586 | 590 |
587 deps = [ | 591 deps = [ |
588 "//mandoline:all", | 592 "//mandoline:all", |
589 ] | 593 ] |
590 | 594 |
591 if (!is_android && !is_ios) { | 595 if (!is_android && !is_ios) { |
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
903 "//ui/views:views_unittests", # TooltipControllerTest failures | 907 "//ui/views:views_unittests", # TooltipControllerTest failures |
904 "//ui/wm:wm_unittests", # PASSES 4/21/2015 | 908 "//ui/wm:wm_unittests", # PASSES 4/21/2015 |
905 "//url:url_unittests", # PASSES 4/17/2015 | 909 "//url:url_unittests", # PASSES 4/17/2015 |
906 | 910 |
907 # TODO(GYP) nacl_integration | 911 # TODO(GYP) nacl_integration |
908 # TODO(GYP) telemetry_perf_unittests | 912 # TODO(GYP) telemetry_perf_unittests |
909 # TODO(GYP) telemetry_unittests | 913 # TODO(GYP) telemetry_unittests |
910 ] | 914 ] |
911 } | 915 } |
912 } | 916 } |
OLD | NEW |