Chromium Code Reviews| 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 # 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 1174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1185 "rand_util_nacl.cc", | 1185 "rand_util_nacl.cc", |
| 1186 "synchronization/read_write_lock_nacl.cc", | 1186 "synchronization/read_write_lock_nacl.cc", |
| 1187 ] | 1187 ] |
| 1188 } | 1188 } |
| 1189 | 1189 |
| 1190 # Windows. | 1190 # Windows. |
| 1191 if (is_win) { | 1191 if (is_win) { |
| 1192 sources += [ | 1192 sources += [ |
| 1193 "profiler/win32_stack_frame_unwinder.cc", | 1193 "profiler/win32_stack_frame_unwinder.cc", |
| 1194 "profiler/win32_stack_frame_unwinder.h", | 1194 "profiler/win32_stack_frame_unwinder.h", |
| 1195 "trace_event/malloc_dump_provider.cc", | |
|
Primiano Tucci (use gerrit)
2016/08/24 11:00:23
Uhm feels like malloc_dump_provider is now added t
Sigurður Ásgeirsson
2016/08/24 17:55:16
Done.
| |
| 1196 "trace_event/malloc_dump_provider.h", | |
| 1195 ] | 1197 ] |
| 1196 | 1198 |
| 1197 sources -= [ | 1199 sources -= [ |
| 1198 "message_loop/message_pump_libevent.cc", | 1200 "message_loop/message_pump_libevent.cc", |
| 1199 "strings/string16.cc", | 1201 "strings/string16.cc", |
| 1200 ] | 1202 ] |
| 1201 | 1203 |
| 1202 deps += [ | 1204 deps += [ |
| 1203 "//base/trace_event/etw_manifest:chrome_events_win", | 1205 "//base/trace_event/etw_manifest:chrome_events_win", |
| 1204 "//base/win:base_win_features", | 1206 "//base/win:base_win_features", |
| (...skipping 1240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2445 android_library("base_java_unittest_support") { | 2447 android_library("base_java_unittest_support") { |
| 2446 deps = [ | 2448 deps = [ |
| 2447 ":base_java", | 2449 ":base_java", |
| 2448 ] | 2450 ] |
| 2449 java_files = [ | 2451 java_files = [ |
| 2450 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java", | 2452 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java", |
| 2451 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java", | 2453 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java", |
| 2452 ] | 2454 ] |
| 2453 } | 2455 } |
| 2454 } | 2456 } |
| OLD | NEW |