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

Side by Side Diff: base/BUILD.gn

Issue 2143693003: Start refactoring Windows allocator shim in prep for hooking in generic allocator shim on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address Nico's comments. Created 4 years, 5 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/allocator/BUILD.gn » ('j') | base/allocator/allocator.gyp » ('J')
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 1967 matching lines...) Expand 10 before | Expand all | Expand 10 after
1978 "win/wait_chain_unittest.cc", 1978 "win/wait_chain_unittest.cc",
1979 "win/win_util_unittest.cc", 1979 "win/win_util_unittest.cc",
1980 "win/windows_version_unittest.cc", 1980 "win/windows_version_unittest.cc",
1981 "win/wrapped_window_proc_unittest.cc", 1981 "win/wrapped_window_proc_unittest.cc",
1982 ] 1982 ]
1983 1983
1984 deps = [ 1984 deps = [
1985 ":base", 1985 ":base",
1986 ":i18n", 1986 ":i18n",
1987 ":message_loop_tests", 1987 ":message_loop_tests",
1988 "//base/allocator:features",
1988 "//base/test:run_all_unittests", 1989 "//base/test:run_all_unittests",
1989 "//base/test:test_support", 1990 "//base/test:test_support",
1990 "//base/third_party/dynamic_annotations", 1991 "//base/third_party/dynamic_annotations",
1991 "//testing/gmock", 1992 "//testing/gmock",
1992 "//testing/gtest", 1993 "//testing/gtest",
1993 "//third_party/icu", 1994 "//third_party/icu",
1994 ] 1995 ]
1995 1996
1996 if (is_ios || is_mac) { 1997 if (is_ios || is_mac) {
1997 deps += [ ":base_unittests_arc" ] 1998 deps += [ ":base_unittests_arc" ]
(...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after
2419 2420
2420 # GYP: //base.gyp:base_java_unittest_support 2421 # GYP: //base.gyp:base_java_unittest_support
2421 android_library("base_java_unittest_support") { 2422 android_library("base_java_unittest_support") {
2422 deps = [ 2423 deps = [
2423 ":base_java", 2424 ":base_java",
2424 ] 2425 ]
2425 java_files = 2426 java_files =
2426 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 2427 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
2427 } 2428 }
2428 } 2429 }
OLDNEW
« no previous file with comments | « no previous file | base/allocator/BUILD.gn » ('j') | base/allocator/allocator.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698