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

Side by Side Diff: BUILD.gn

Issue 1622773002: Fix date picker performance issues, crash, and incorrect pre-1582 dates. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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 | build/all.gyp » ('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 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 "//testing/android/junit:junit_unittests", 286 "//testing/android/junit:junit_unittests",
287 "//third_party/android_tools:uiautomator_java", 287 "//third_party/android_tools:uiautomator_java",
288 "//third_party/errorprone:chromium_errorprone", 288 "//third_party/errorprone:chromium_errorprone",
289 "//third_party/smhasher:murmurhash3", 289 "//third_party/smhasher:murmurhash3",
290 "//tools/android:android_tools", 290 "//tools/android:android_tools",
291 "//tools/android:memconsumer", 291 "//tools/android:memconsumer",
292 "//tools/android/heap_profiler:heap_profiler_unittests", 292 "//tools/android/heap_profiler:heap_profiler_unittests",
293 "//tools/android/kerberos/SpnegoAuthenticator:spnego_authenticator_apk", 293 "//tools/android/kerberos/SpnegoAuthenticator:spnego_authenticator_apk",
294 "//tools/cygprofile:cygprofile_unittests", 294 "//tools/cygprofile:cygprofile_unittests",
295 "//tools/imagediff($host_toolchain)", 295 "//tools/imagediff($host_toolchain)",
296 "//ui/android:ui_junit_tests",
296 ] 297 ]
297 deps -= [ 298 deps -= [
298 "//net:net_perftests", 299 "//net:net_perftests",
299 "//url:url_unittests", 300 "//url:url_unittests",
300 ] 301 ]
301 302
302 if (!is_component_build) { 303 if (!is_component_build) {
303 deps += [ 304 deps += [
304 "//components/cronet/android:cronet_package", 305 "//components/cronet/android:cronet_package",
305 "//components/cronet/android:cronet_sample_apk", 306 "//components/cronet/android:cronet_sample_apk",
(...skipping 562 matching lines...) Expand 10 before | Expand all | Expand 10 after
868 ] 869 ]
869 870
870 if (target_cpu == "x86") { 871 if (target_cpu == "x86") {
871 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] 872 deps += [ "//chrome/tools/crash_service:crash_service_win64" ]
872 } 873 }
873 } else { 874 } else {
874 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] 875 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ]
875 } 876 }
876 } 877 }
877 } 878 }
OLDNEW
« no previous file with comments | « no previous file | build/all.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698