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 } | |
586 } | 582 } |
587 | 583 |
588 group("gn_only") { | 584 group("gn_only") { |
589 testonly = true | 585 testonly = true |
590 | 586 |
591 deps = [ | 587 deps = [ |
592 "//mandoline:all", | 588 "//mandoline:all", |
593 ] | 589 ] |
594 | 590 |
595 if (!is_android && !is_ios) { | 591 if (!is_android && !is_ios) { |
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
907 "//ui/views:views_unittests", # TooltipControllerTest failures | 903 "//ui/views:views_unittests", # TooltipControllerTest failures |
908 "//ui/wm:wm_unittests", # PASSES 4/21/2015 | 904 "//ui/wm:wm_unittests", # PASSES 4/21/2015 |
909 "//url:url_unittests", # PASSES 4/17/2015 | 905 "//url:url_unittests", # PASSES 4/17/2015 |
910 | 906 |
911 # TODO(GYP) nacl_integration | 907 # TODO(GYP) nacl_integration |
912 # TODO(GYP) telemetry_perf_unittests | 908 # TODO(GYP) telemetry_perf_unittests |
913 # TODO(GYP) telemetry_unittests | 909 # TODO(GYP) telemetry_unittests |
914 ] | 910 ] |
915 } | 911 } |
916 } | 912 } |
OLD | NEW |