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

Side by Side Diff: base/BUILD.gn

Issue 2898213003: Add skeleton circular queue file.
Patch Set: Fix merge 2 Created 3 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/containers/circular_deque.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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 "callback_helpers.cc", 223 "callback_helpers.cc",
224 "callback_helpers.h", 224 "callback_helpers.h",
225 "callback_internal.cc", 225 "callback_internal.cc",
226 "callback_internal.h", 226 "callback_internal.h",
227 "callback_list.h", 227 "callback_list.h",
228 "cancelable_callback.h", 228 "cancelable_callback.h",
229 "command_line.cc", 229 "command_line.cc",
230 "command_line.h", 230 "command_line.h",
231 "compiler_specific.h", 231 "compiler_specific.h",
232 "containers/adapters.h", 232 "containers/adapters.h",
233 "containers/circular_deque.h",
233 "containers/flat_map.h", 234 "containers/flat_map.h",
234 "containers/flat_set.h", 235 "containers/flat_set.h",
235 "containers/flat_tree.h", 236 "containers/flat_tree.h",
236 "containers/hash_tables.h", 237 "containers/hash_tables.h",
237 "containers/linked_list.h", 238 "containers/linked_list.h",
238 "containers/mru_cache.h", 239 "containers/mru_cache.h",
239 "containers/small_map.h", 240 "containers/small_map.h",
240 "containers/stack_container.h", 241 "containers/stack_container.h",
242 "containers/vector_buffer.h",
241 "cpu.cc", 243 "cpu.cc",
242 "cpu.h", 244 "cpu.h",
243 "critical_closure.h", 245 "critical_closure.h",
244 "critical_closure_internal_ios.mm", 246 "critical_closure_internal_ios.mm",
245 247
246 # This file depends on files from the "debug/allocator" target, 248 # This file depends on files from the "debug/allocator" target,
247 # but this target does not depend on "debug/allocator". 249 # but this target does not depend on "debug/allocator".
248 "debug/activity_analyzer.cc", 250 "debug/activity_analyzer.cc",
249 "debug/activity_analyzer.h", 251 "debug/activity_analyzer.h",
250 "debug/activity_tracker.cc", 252 "debug/activity_tracker.cc",
(...skipping 1729 matching lines...) Expand 10 before | Expand all | Expand 10 after
1980 "bind_unittest.cc", 1982 "bind_unittest.cc",
1981 "bit_cast_unittest.cc", 1983 "bit_cast_unittest.cc",
1982 "bits_unittest.cc", 1984 "bits_unittest.cc",
1983 "build_time_unittest.cc", 1985 "build_time_unittest.cc",
1984 "callback_helpers_unittest.cc", 1986 "callback_helpers_unittest.cc",
1985 "callback_list_unittest.cc", 1987 "callback_list_unittest.cc",
1986 "callback_unittest.cc", 1988 "callback_unittest.cc",
1987 "cancelable_callback_unittest.cc", 1989 "cancelable_callback_unittest.cc",
1988 "command_line_unittest.cc", 1990 "command_line_unittest.cc",
1989 "containers/adapters_unittest.cc", 1991 "containers/adapters_unittest.cc",
1992 "containers/circular_deque_unittest.cc",
1990 "containers/flat_map_unittest.cc", 1993 "containers/flat_map_unittest.cc",
1991 "containers/flat_set_unittest.cc", 1994 "containers/flat_set_unittest.cc",
1992 "containers/flat_tree_unittest.cc", 1995 "containers/flat_tree_unittest.cc",
1993 "containers/hash_tables_unittest.cc", 1996 "containers/hash_tables_unittest.cc",
1994 "containers/linked_list_unittest.cc", 1997 "containers/linked_list_unittest.cc",
1995 "containers/mru_cache_unittest.cc", 1998 "containers/mru_cache_unittest.cc",
1996 "containers/small_map_unittest.cc", 1999 "containers/small_map_unittest.cc",
1997 "containers/stack_container_unittest.cc", 2000 "containers/stack_container_unittest.cc",
2001 "containers/vector_buffer_unittest.cc",
1998 "cpu_unittest.cc", 2002 "cpu_unittest.cc",
1999 "debug/activity_analyzer_unittest.cc", 2003 "debug/activity_analyzer_unittest.cc",
2000 "debug/activity_tracker_unittest.cc", 2004 "debug/activity_tracker_unittest.cc",
2001 "debug/crash_logging_unittest.cc", 2005 "debug/crash_logging_unittest.cc",
2002 "debug/debugger_unittest.cc", 2006 "debug/debugger_unittest.cc",
2003 "debug/leak_tracker_unittest.cc", 2007 "debug/leak_tracker_unittest.cc",
2004 "debug/proc_maps_linux_unittest.cc", 2008 "debug/proc_maps_linux_unittest.cc",
2005 "debug/stack_trace_unittest.cc", 2009 "debug/stack_trace_unittest.cc",
2006 "debug/task_annotator_unittest.cc", 2010 "debug/task_annotator_unittest.cc",
2007 "debug/thread_heap_usage_tracker_unittest.cc", 2011 "debug/thread_heap_usage_tracker_unittest.cc",
(...skipping 786 matching lines...) Expand 10 before | Expand all | Expand 10 after
2794 } 2798 }
2795 2799
2796 fuzzer_test("base_json_correctness_fuzzer") { 2800 fuzzer_test("base_json_correctness_fuzzer") {
2797 sources = [ 2801 sources = [
2798 "json/correctness_fuzzer.cc", 2802 "json/correctness_fuzzer.cc",
2799 ] 2803 ]
2800 deps = [ 2804 deps = [
2801 ":base", 2805 ":base",
2802 ] 2806 ]
2803 } 2807 }
OLDNEW
« no previous file with comments | « no previous file | base/containers/circular_deque.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698