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

Side by Side Diff: base/BUILD.gn

Issue 2052713002: Remove the CryptoAPI implementation of SHA-1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix a few stragglers Created 4 years, 6 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 | base/base.gypi » ('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 # HOW TO WRITE CONDITIONALS IN THIS FILE 5 # HOW TO WRITE CONDITIONALS IN THIS FILE
6 # ====================================== 6 # ======================================
7 # 7 #
8 # In many other places, one would write a conditional that expresses all the 8 # In many other places, one would write a conditional that expresses all the
9 # cases when a source file is used or unused, and then either add or subtract 9 # cases when a source file is used or unused, and then either add or subtract
10 # it from the sources list in that case 10 # it from the sources list in that case
(...skipping 658 matching lines...) Expand 10 before | Expand all | Expand 10 after
669 "scoped_generic.h", 669 "scoped_generic.h",
670 "scoped_native_library.cc", 670 "scoped_native_library.cc",
671 "scoped_native_library.h", 671 "scoped_native_library.h",
672 "scoped_observer.h", 672 "scoped_observer.h",
673 "sequence_checker.h", 673 "sequence_checker.h",
674 "sequence_checker_impl.cc", 674 "sequence_checker_impl.cc",
675 "sequence_checker_impl.h", 675 "sequence_checker_impl.h",
676 "sequenced_task_runner.cc", 676 "sequenced_task_runner.cc",
677 "sequenced_task_runner.h", 677 "sequenced_task_runner.h",
678 "sequenced_task_runner_helpers.h", 678 "sequenced_task_runner_helpers.h",
679 "sha1.cc",
679 "sha1.h", 680 "sha1.h",
680 "sha1_portable.cc",
681 "sha1_win.cc",
682 "single_thread_task_runner.h", 681 "single_thread_task_runner.h",
683 "stl_util.h", 682 "stl_util.h",
684 "strings/latin1_string_conversions.cc", 683 "strings/latin1_string_conversions.cc",
685 "strings/latin1_string_conversions.h", 684 "strings/latin1_string_conversions.h",
686 "strings/nullable_string16.cc", 685 "strings/nullable_string16.cc",
687 "strings/nullable_string16.h", 686 "strings/nullable_string16.h",
688 "strings/pattern.cc", 687 "strings/pattern.cc",
689 "strings/pattern.h", 688 "strings/pattern.h",
690 "strings/safe_sprintf.cc", 689 "strings/safe_sprintf.cc",
691 "strings/safe_sprintf.h", 690 "strings/safe_sprintf.h",
(...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after
1171 # Windows. 1170 # Windows.
1172 if (is_win) { 1171 if (is_win) {
1173 sources += [ 1172 sources += [
1174 "profiler/win32_stack_frame_unwinder.cc", 1173 "profiler/win32_stack_frame_unwinder.cc",
1175 "profiler/win32_stack_frame_unwinder.h", 1174 "profiler/win32_stack_frame_unwinder.h",
1176 ] 1175 ]
1177 1176
1178 sources -= [ 1177 sources -= [
1179 "message_loop/message_pump_libevent.cc", 1178 "message_loop/message_pump_libevent.cc",
1180 "strings/string16.cc", 1179 "strings/string16.cc",
1181
1182 # Not using sha1_win.cc because it may have caused a
1183 # regression to page cycler moz.
1184 "sha1_win.cc",
1185 ] 1180 ]
1186 1181
1187 deps += [ 1182 deps += [
1188 "//base/trace_event/etw_manifest:chrome_events_win", 1183 "//base/trace_event/etw_manifest:chrome_events_win",
1189 "//base/win:base_win_features", 1184 "//base/win:base_win_features",
1190 ] 1185 ]
1191 1186
1192 if (is_component_build) { 1187 if (is_component_build) {
1193 # Copy the VS runtime DLLs into the isolate so that they don't have to be 1188 # Copy the VS runtime DLLs into the isolate so that they don't have to be
1194 # preinstalled on the target machine. The debug runtimes have a "d" at 1189 # preinstalled on the target machine. The debug runtimes have a "d" at
(...skipping 1194 matching lines...) Expand 10 before | Expand all | Expand 10 after
2389 2384
2390 # GYP: //base.gyp:base_java_unittest_support 2385 # GYP: //base.gyp:base_java_unittest_support
2391 android_library("base_java_unittest_support") { 2386 android_library("base_java_unittest_support") {
2392 deps = [ 2387 deps = [
2393 ":base_java", 2388 ":base_java",
2394 ] 2389 ]
2395 java_files = 2390 java_files =
2396 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 2391 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
2397 } 2392 }
2398 } 2393 }
OLDNEW
« no previous file with comments | « no previous file | base/base.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698