| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 | 59 |
| 60 # The "both_gn_and_gyp" target should reflect every target that is built | 60 # The "both_gn_and_gyp" target should reflect every target that is built |
| 61 # in both the GN and GYP builds, and ideally it should match the | 61 # in both the GN and GYP builds, and ideally it should match the |
| 62 # "both_gn_and_gyp" target in build/gn_migration.gypi line-for-line. | 62 # "both_gn_and_gyp" target in build/gn_migration.gypi line-for-line. |
| 63 # | 63 # |
| 64 # TODO(GYP): Add build steps that check and enforce this on the bots. | 64 # TODO(GYP): Add build steps that check and enforce this on the bots. |
| 65 group("both_gn_and_gyp") { | 65 group("both_gn_and_gyp") { |
| 66 testonly = true | 66 testonly = true |
| 67 deps = [ | 67 deps = [ |
| 68 "//base:base_unittests", | 68 "//base:base_unittests", |
| 69 "//sql:sql_unittests", | 69 "//chrome/installer", |
| 70 "//net:net_unittests", | 70 "//net:net_unittests", |
| 71 "//skia:skia_unittests", | 71 "//skia:skia_unittests", |
| 72 "//sql:sql_unittests", |
| 72 "//ui/base:ui_base_unittests", | 73 "//ui/base:ui_base_unittests", |
| 73 "//url:url_unittests", | 74 "//url:url_unittests", |
| 74 ] | 75 ] |
| 75 | 76 |
| 76 if (!is_ios) { | 77 if (!is_ios) { |
| 77 # TODO(GYP): Figure out which of these should actually build on iOS, | 78 # TODO(GYP): Figure out which of these should actually build on iOS, |
| 78 # and whether there should be other targets that are iOS-only and missing. | 79 # and whether there should be other targets that are iOS-only and missing. |
| 79 deps += [ | 80 deps += [ |
| 80 "//cc:cc_unittests", | 81 "//cc:cc_unittests", |
| 81 "//chrome", | 82 "//chrome", |
| (...skipping 848 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 930 "//ui/views:views_unittests", # TooltipControllerTest failures | 931 "//ui/views:views_unittests", # TooltipControllerTest failures |
| 931 "//ui/wm:wm_unittests", # PASSES 4/21/2015 | 932 "//ui/wm:wm_unittests", # PASSES 4/21/2015 |
| 932 "//url:url_unittests", # PASSES 4/17/2015 | 933 "//url:url_unittests", # PASSES 4/17/2015 |
| 933 | 934 |
| 934 # TODO(GYP) nacl_integration | 935 # TODO(GYP) nacl_integration |
| 935 # TODO(GYP) telemetry_perf_unittests | 936 # TODO(GYP) telemetry_perf_unittests |
| 936 # TODO(GYP) telemetry_unittests | 937 # TODO(GYP) telemetry_unittests |
| 937 ] | 938 ] |
| 938 } | 939 } |
| 939 } | 940 } |
| OLD | NEW |