Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(128)

Side by Side Diff: BUILD.gn

Issue 1565343003: Move mojo/application/public -> mojo/shell/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fetcher
Patch Set: . Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 "//content/test:content_perftests", 168 "//content/test:content_perftests",
169 "//content/test:content_unittests", 169 "//content/test:content_unittests",
170 "//device:device_unittests", 170 "//device:device_unittests",
171 "//gpu:gpu_unittests", 171 "//gpu:gpu_unittests",
172 "//ipc:ipc_tests", 172 "//ipc:ipc_tests",
173 "//ipc/mojo:ipc_mojo_unittests", 173 "//ipc/mojo:ipc_mojo_unittests",
174 "//media:media_unittests", 174 "//media:media_unittests",
175 "//media/cast:cast_unittests", 175 "//media/cast:cast_unittests",
176 "//media/midi:midi_unittests", 176 "//media/midi:midi_unittests",
177 "//mojo", 177 "//mojo",
178 "//mojo/application/public/cpp",
179 "//mojo/common:mojo_common_unittests", 178 "//mojo/common:mojo_common_unittests",
179 "//mojo/shell/public/cpp",
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:blink_heap_unittests", 188 "//third_party/WebKit/Source/platform:blink_heap_unittests",
189 "//third_party/WebKit/Source/platform:blink_platform_unittests", 189 "//third_party/WebKit/Source/platform:blink_platform_unittests",
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after
498 "//breakpad:minidump_dump($host_toolchain)", 498 "//breakpad:minidump_dump($host_toolchain)",
499 "//breakpad:minidump_stackwalk($host_toolchain)", 499 "//breakpad:minidump_stackwalk($host_toolchain)",
500 "//cloud_print:cloud_print_unittests", 500 "//cloud_print:cloud_print_unittests",
501 "//components/network_hints/browser", 501 "//components/network_hints/browser",
502 "//content/public/app:browser", 502 "//content/public/app:browser",
503 "//content/public/app:child", 503 "//content/public/app:child",
504 504
505 # TODO(GYP): Remove this when the gles2 tests work 505 # TODO(GYP): Remove this when the gles2 tests work
506 "//gpu/command_buffer/client:gles2_implementation_no_check", 506 "//gpu/command_buffer/client:gles2_implementation_no_check",
507 "//gpu/khronos_glcts_support:khronos_glcts_test", # TODO(GYP) crbug.com/4 71903 to make this complete. 507 "//gpu/khronos_glcts_support:khronos_glcts_test", # TODO(GYP) crbug.com/4 71903 to make this complete.
508 "//mojo/application/public/cpp", 508 "//mojo/shell/public/cpp",
509 "//testing/gmock:gmock_main", 509 "//testing/gmock:gmock_main",
510 510
511 # TODO(use-new-edk): 511 # TODO(use-new-edk):
512 #"//mojo/edk/test:mojo_public_system_perftests", 512 #"//mojo/edk/test:mojo_public_system_perftests",
513 "//third_party/codesighs:nm2tsv", 513 "//third_party/codesighs:nm2tsv",
514 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_perftests", 514 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_perftests",
515 ] 515 ]
516 516
517 if (!is_android) { 517 if (!is_android) {
518 deps += [ 518 deps += [
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after
872 ] 872 ]
873 873
874 if (target_cpu == "x86") { 874 if (target_cpu == "x86") {
875 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] 875 deps += [ "//chrome/tools/crash_service:crash_service_win64" ]
876 } 876 }
877 } else { 877 } else {
878 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] 878 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ]
879 } 879 }
880 } 880 }
881 } 881 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698