| 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 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 "debug/thread_heap_usage_tracker.cc", | 324 "debug/thread_heap_usage_tracker.cc", |
| 325 "debug/thread_heap_usage_tracker.h", | 325 "debug/thread_heap_usage_tracker.h", |
| 326 "deferred_sequenced_task_runner.cc", | 326 "deferred_sequenced_task_runner.cc", |
| 327 "deferred_sequenced_task_runner.h", | 327 "deferred_sequenced_task_runner.h", |
| 328 "environment.cc", | 328 "environment.cc", |
| 329 "environment.h", | 329 "environment.h", |
| 330 "event_types.h", | 330 "event_types.h", |
| 331 "feature_list.cc", | 331 "feature_list.cc", |
| 332 "feature_list.h", | 332 "feature_list.h", |
| 333 "file_descriptor_posix.h", | 333 "file_descriptor_posix.h", |
| 334 "file_descriptor_store.cc", |
| 335 "file_descriptor_store.h", |
| 334 "file_version_info.h", | 336 "file_version_info.h", |
| 335 "file_version_info_mac.h", | 337 "file_version_info_mac.h", |
| 336 "file_version_info_mac.mm", | 338 "file_version_info_mac.mm", |
| 337 "file_version_info_win.cc", | 339 "file_version_info_win.cc", |
| 338 "file_version_info_win.h", | 340 "file_version_info_win.h", |
| 339 "files/dir_reader_fallback.h", | 341 "files/dir_reader_fallback.h", |
| 340 "files/dir_reader_linux.h", | 342 "files/dir_reader_linux.h", |
| 341 "files/dir_reader_posix.h", | 343 "files/dir_reader_posix.h", |
| 342 "files/file.cc", | 344 "files/file.cc", |
| 343 "files/file.h", | 345 "files/file.h", |
| (...skipping 978 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1322 | 1324 |
| 1323 # Windows. | 1325 # Windows. |
| 1324 if (is_win) { | 1326 if (is_win) { |
| 1325 sources += [ | 1327 sources += [ |
| 1326 "power_monitor/power_monitor_device_source_win.cc", | 1328 "power_monitor/power_monitor_device_source_win.cc", |
| 1327 "profiler/win32_stack_frame_unwinder.cc", | 1329 "profiler/win32_stack_frame_unwinder.cc", |
| 1328 "profiler/win32_stack_frame_unwinder.h", | 1330 "profiler/win32_stack_frame_unwinder.h", |
| 1329 ] | 1331 ] |
| 1330 | 1332 |
| 1331 sources -= [ | 1333 sources -= [ |
| 1334 "file_descriptor_store.cc", |
| 1335 "file_descriptor_store.h", |
| 1332 "memory/shared_memory_helper.cc", | 1336 "memory/shared_memory_helper.cc", |
| 1333 "memory/shared_memory_helper.h", | 1337 "memory/shared_memory_helper.h", |
| 1334 "message_loop/message_pump_libevent.cc", | 1338 "message_loop/message_pump_libevent.cc", |
| 1335 "strings/string16.cc", | 1339 "strings/string16.cc", |
| 1336 ] | 1340 ] |
| 1337 | 1341 |
| 1338 deps += [ | 1342 deps += [ |
| 1339 "//base/trace_event/etw_manifest:chrome_events_win", | 1343 "//base/trace_event/etw_manifest:chrome_events_win", |
| 1340 "//base/win:base_win_features", | 1344 "//base/win:base_win_features", |
| 1341 "//base/win:eventlog_messages", | 1345 "//base/win:eventlog_messages", |
| (...skipping 1304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2646 } | 2650 } |
| 2647 | 2651 |
| 2648 fuzzer_test("base_json_correctness_fuzzer") { | 2652 fuzzer_test("base_json_correctness_fuzzer") { |
| 2649 sources = [ | 2653 sources = [ |
| 2650 "json/correctness_fuzzer.cc", | 2654 "json/correctness_fuzzer.cc", |
| 2651 ] | 2655 ] |
| 2652 deps = [ | 2656 deps = [ |
| 2653 ":base", | 2657 ":base", |
| 2654 ] | 2658 ] |
| 2655 } | 2659 } |
| OLD | NEW |