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 976 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1320 | 1322 |
1321 # Windows. | 1323 # Windows. |
1322 if (is_win) { | 1324 if (is_win) { |
1323 sources += [ | 1325 sources += [ |
1324 "power_monitor/power_monitor_device_source_win.cc", | 1326 "power_monitor/power_monitor_device_source_win.cc", |
1325 "profiler/win32_stack_frame_unwinder.cc", | 1327 "profiler/win32_stack_frame_unwinder.cc", |
1326 "profiler/win32_stack_frame_unwinder.h", | 1328 "profiler/win32_stack_frame_unwinder.h", |
1327 ] | 1329 ] |
1328 | 1330 |
1329 sources -= [ | 1331 sources -= [ |
| 1332 "file_descriptor_store.cc", |
| 1333 "file_descriptor_store.h", |
1330 "memory/shared_memory_helper.cc", | 1334 "memory/shared_memory_helper.cc", |
1331 "memory/shared_memory_helper.h", | 1335 "memory/shared_memory_helper.h", |
1332 "message_loop/message_pump_libevent.cc", | 1336 "message_loop/message_pump_libevent.cc", |
1333 "strings/string16.cc", | 1337 "strings/string16.cc", |
1334 ] | 1338 ] |
1335 | 1339 |
1336 deps += [ | 1340 deps += [ |
1337 "//base/trace_event/etw_manifest:chrome_events_win", | 1341 "//base/trace_event/etw_manifest:chrome_events_win", |
1338 "//base/win:base_win_features", | 1342 "//base/win:base_win_features", |
1339 "//base/win:eventlog_messages", | 1343 "//base/win:eventlog_messages", |
(...skipping 1299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2639 } | 2643 } |
2640 | 2644 |
2641 fuzzer_test("base_json_correctness_fuzzer") { | 2645 fuzzer_test("base_json_correctness_fuzzer") { |
2642 sources = [ | 2646 sources = [ |
2643 "json/correctness_fuzzer.cc", | 2647 "json/correctness_fuzzer.cc", |
2644 ] | 2648 ] |
2645 deps = [ | 2649 deps = [ |
2646 ":base", | 2650 ":base", |
2647 ] | 2651 ] |
2648 } | 2652 } |
OLD | NEW |