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

Side by Side Diff: base/BUILD.gn

Issue 2552343003: First implementation of flat sets (Closed)
Patch Set: Review, round 10. 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 | « no previous file | base/containers/flat_set.h » ('j') | base/containers/flat_set.h » ('J')
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 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 "callback_helpers.cc", 264 "callback_helpers.cc",
265 "callback_helpers.h", 265 "callback_helpers.h",
266 "callback_internal.cc", 266 "callback_internal.cc",
267 "callback_internal.h", 267 "callback_internal.h",
268 "callback_list.h", 268 "callback_list.h",
269 "cancelable_callback.h", 269 "cancelable_callback.h",
270 "command_line.cc", 270 "command_line.cc",
271 "command_line.h", 271 "command_line.h",
272 "compiler_specific.h", 272 "compiler_specific.h",
273 "containers/adapters.h", 273 "containers/adapters.h",
274 "containers/flat_set.h",
274 "containers/hash_tables.h", 275 "containers/hash_tables.h",
275 "containers/linked_list.h", 276 "containers/linked_list.h",
276 "containers/mru_cache.h", 277 "containers/mru_cache.h",
277 "containers/small_map.h", 278 "containers/small_map.h",
278 "containers/stack_container.h", 279 "containers/stack_container.h",
279 "cpu.cc", 280 "cpu.cc",
280 "cpu.h", 281 "cpu.h",
281 "critical_closure.h", 282 "critical_closure.h",
282 "critical_closure_internal_ios.mm", 283 "critical_closure_internal_ios.mm",
283 284
(...skipping 1569 matching lines...) Expand 10 before | Expand all | Expand 10 after
1853 "bind_unittest.cc", 1854 "bind_unittest.cc",
1854 "bit_cast_unittest.cc", 1855 "bit_cast_unittest.cc",
1855 "bits_unittest.cc", 1856 "bits_unittest.cc",
1856 "build_time_unittest.cc", 1857 "build_time_unittest.cc",
1857 "callback_helpers_unittest.cc", 1858 "callback_helpers_unittest.cc",
1858 "callback_list_unittest.cc", 1859 "callback_list_unittest.cc",
1859 "callback_unittest.cc", 1860 "callback_unittest.cc",
1860 "cancelable_callback_unittest.cc", 1861 "cancelable_callback_unittest.cc",
1861 "command_line_unittest.cc", 1862 "command_line_unittest.cc",
1862 "containers/adapters_unittest.cc", 1863 "containers/adapters_unittest.cc",
1864 "containers/flat_set_unittest.cc",
1863 "containers/hash_tables_unittest.cc", 1865 "containers/hash_tables_unittest.cc",
1864 "containers/linked_list_unittest.cc", 1866 "containers/linked_list_unittest.cc",
1865 "containers/mru_cache_unittest.cc", 1867 "containers/mru_cache_unittest.cc",
1866 "containers/small_map_unittest.cc", 1868 "containers/small_map_unittest.cc",
1867 "containers/stack_container_unittest.cc", 1869 "containers/stack_container_unittest.cc",
1868 "cpu_unittest.cc", 1870 "cpu_unittest.cc",
1869 "debug/activity_analyzer_unittest.cc", 1871 "debug/activity_analyzer_unittest.cc",
1870 "debug/activity_tracker_unittest.cc", 1872 "debug/activity_tracker_unittest.cc",
1871 "debug/crash_logging_unittest.cc", 1873 "debug/crash_logging_unittest.cc",
1872 "debug/debugger_unittest.cc", 1874 "debug/debugger_unittest.cc",
(...skipping 716 matching lines...) Expand 10 before | Expand all | Expand 10 after
2589 } 2591 }
2590 2592
2591 fuzzer_test("base_json_correctness_fuzzer") { 2593 fuzzer_test("base_json_correctness_fuzzer") {
2592 sources = [ 2594 sources = [
2593 "json/correctness_fuzzer.cc", 2595 "json/correctness_fuzzer.cc",
2594 ] 2596 ]
2595 deps = [ 2597 deps = [
2596 ":base", 2598 ":base",
2597 ] 2599 ]
2598 } 2600 }
OLDNEW
« no previous file with comments | « no previous file | base/containers/flat_set.h » ('j') | base/containers/flat_set.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698