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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 "//mojo/application/public/cpp", | 178 "//mojo/application/public/cpp", |
179 "//mojo/common:mojo_common_unittests", | 179 "//mojo/common:mojo_common_unittests", |
180 "//net:net_perftests", | 180 "//net:net_perftests", |
181 | 181 |
182 # TODO(use-new-edk): | 182 # TODO(use-new-edk): |
183 #"//mojo/edk/system:mojo_system_unittests", | 183 #"//mojo/edk/system:mojo_system_unittests", |
184 #"//mojo/edk/test:mojo_public_bindings_unittests", | 184 #"//mojo/edk/test:mojo_public_bindings_unittests", |
185 #"//mojo/edk/test:mojo_public_environment_unittests", | 185 #"//mojo/edk/test:mojo_public_environment_unittests", |
186 #"//mojo/edk/test:mojo_public_system_unittests", | 186 #"//mojo/edk/test:mojo_public_system_unittests", |
187 #"//mojo/edk/test:mojo_public_utility_unittests", | 187 #"//mojo/edk/test:mojo_public_utility_unittests", |
188 "//third_party/WebKit/Source/platform:heap_unittests", | 188 "//third_party/WebKit/Source/platform:blink_heap_unittests", |
189 "//third_party/WebKit/Source/platform:platform_unittests", | 189 "//third_party/WebKit/Source/platform:blink_platform_unittests", |
190 "//third_party/WebKit/Source/web:webkit_unit_tests", | 190 "//third_party/WebKit/Source/web:webkit_unit_tests", |
191 "//third_party/WebKit/Source/wtf:wtf_unittests", | 191 "//third_party/WebKit/Source/wtf:wtf_unittests", |
192 "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests", | 192 "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests", |
193 "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests", | 193 "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests", |
194 "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests", | 194 "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests", |
195 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests", | 195 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests", |
196 "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests", | 196 "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests", |
197 "//third_party/smhasher:pmurhash", | 197 "//third_party/smhasher:pmurhash", |
198 "//tools/battor_agent", | 198 "//tools/battor_agent", |
199 "//tools/imagediff($host_toolchain)", | 199 "//tools/imagediff($host_toolchain)", |
(...skipping 658 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
858 ] | 858 ] |
859 | 859 |
860 if (target_cpu == "x86") { | 860 if (target_cpu == "x86") { |
861 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] | 861 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] |
862 } | 862 } |
863 } else { | 863 } else { |
864 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] | 864 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] |
865 } | 865 } |
866 } | 866 } |
867 } | 867 } |
OLD | NEW |