| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 "//content/test:content_unittests", | 56 "//content/test:content_unittests", |
| 57 "//crypto:crypto_unittests", | 57 "//crypto:crypto_unittests", |
| 58 "//device:device_unittests", | 58 "//device:device_unittests", |
| 59 "//extensions:extensions_browsertests", | 59 "//extensions:extensions_browsertests", |
| 60 "//extensions:extensions_unittests", | 60 "//extensions:extensions_unittests", |
| 61 "//google_apis/gcm:gcm_unit_tests", | 61 "//google_apis/gcm:gcm_unit_tests", |
| 62 "//gpu:gpu_unittests", | 62 "//gpu:gpu_unittests", |
| 63 "//ipc:ipc_tests", | 63 "//ipc:ipc_tests", |
| 64 "//ipc/mojo:ipc_mojo_unittests", | 64 "//ipc/mojo:ipc_mojo_unittests", |
| 65 "//jingle:jingle_unittests", | 65 "//jingle:jingle_unittests", |
| 66 "//mandoline", |
| 66 "//media:media_unittests", | 67 "//media:media_unittests", |
| 67 "//media/cast:cast_unittests", | 68 "//media/cast:cast_unittests", |
| 68 "//mojo", | 69 "//mojo", |
| 69 "//mojo/application", | 70 "//mojo/application", |
| 70 "//mojo/common:mojo_common_unittests", | 71 "//mojo/common:mojo_common_unittests", |
| 71 "//net:hpack_example_generator", | 72 "//net:hpack_example_generator", |
| 72 "//net:hpack_fuzz_mutator", | 73 "//net:hpack_fuzz_mutator", |
| 73 "//net:hpack_fuzz_wrapper", | 74 "//net:hpack_fuzz_wrapper", |
| 74 "//net:net_perftests", | 75 "//net:net_perftests", |
| 75 "//net:net_unittests", | 76 "//net:net_unittests", |
| (...skipping 705 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 781 | 782 |
| 782 # Note: | 783 # Note: |
| 783 # (*) Fails but failures match GYP build at time of testing. | 784 # (*) Fails but failures match GYP build at time of testing. |
| 784 ] | 785 ] |
| 785 | 786 |
| 786 if (enable_nacl) { | 787 if (enable_nacl) { |
| 787 deps += [ "//components/nacl:nacl_loader_unittests" ] # PASSES 3/28/2015 | 788 deps += [ "//components/nacl:nacl_loader_unittests" ] # PASSES 3/28/2015 |
| 788 } | 789 } |
| 789 } | 790 } |
| 790 } | 791 } |
| OLD | NEW |