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

Side by Side Diff: base/BUILD.gn

Issue 2684433003: Files required by a service now listed in manifest. (Closed)
Patch Set: Fix build. Created 3 years, 10 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 | « android_webview/lib/main/aw_main_delegate.cc ('k') | base/android/apk_assets.h » ('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 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
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 }
OLDNEW
« no previous file with comments | « android_webview/lib/main/aw_main_delegate.cc ('k') | base/android/apk_assets.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698