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

Side by Side Diff: base/BUILD.gn

Issue 2715433007: Add a flat_map container (Closed)
Patch Set: Comments Created 3 years, 9 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/container_test_utils.h » ('j') | base/containers/flat_map.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 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 "callback_helpers.cc", 269 "callback_helpers.cc",
270 "callback_helpers.h", 270 "callback_helpers.h",
271 "callback_internal.cc", 271 "callback_internal.cc",
272 "callback_internal.h", 272 "callback_internal.h",
273 "callback_list.h", 273 "callback_list.h",
274 "cancelable_callback.h", 274 "cancelable_callback.h",
275 "command_line.cc", 275 "command_line.cc",
276 "command_line.h", 276 "command_line.h",
277 "compiler_specific.h", 277 "compiler_specific.h",
278 "containers/adapters.h", 278 "containers/adapters.h",
279 "containers/flat_map.h",
279 "containers/flat_set.h", 280 "containers/flat_set.h",
281 "containers/flat_tree.h",
280 "containers/hash_tables.h", 282 "containers/hash_tables.h",
281 "containers/linked_list.h", 283 "containers/linked_list.h",
282 "containers/mru_cache.h", 284 "containers/mru_cache.h",
283 "containers/small_map.h", 285 "containers/small_map.h",
284 "containers/stack_container.h", 286 "containers/stack_container.h",
285 "cpu.cc", 287 "cpu.cc",
286 "cpu.h", 288 "cpu.h",
287 "critical_closure.h", 289 "critical_closure.h",
288 "critical_closure_internal_ios.mm", 290 "critical_closure_internal_ios.mm",
289 291
(...skipping 1625 matching lines...) Expand 10 before | Expand all | Expand 10 after
1915 "bind_unittest.cc", 1917 "bind_unittest.cc",
1916 "bit_cast_unittest.cc", 1918 "bit_cast_unittest.cc",
1917 "bits_unittest.cc", 1919 "bits_unittest.cc",
1918 "build_time_unittest.cc", 1920 "build_time_unittest.cc",
1919 "callback_helpers_unittest.cc", 1921 "callback_helpers_unittest.cc",
1920 "callback_list_unittest.cc", 1922 "callback_list_unittest.cc",
1921 "callback_unittest.cc", 1923 "callback_unittest.cc",
1922 "cancelable_callback_unittest.cc", 1924 "cancelable_callback_unittest.cc",
1923 "command_line_unittest.cc", 1925 "command_line_unittest.cc",
1924 "containers/adapters_unittest.cc", 1926 "containers/adapters_unittest.cc",
1927 "containers/container_test_utils.h",
1928 "containers/flat_map_unittest.cc",
1925 "containers/flat_set_unittest.cc", 1929 "containers/flat_set_unittest.cc",
1930 "containers/flat_tree_unittest.cc",
1926 "containers/hash_tables_unittest.cc", 1931 "containers/hash_tables_unittest.cc",
1927 "containers/linked_list_unittest.cc", 1932 "containers/linked_list_unittest.cc",
1928 "containers/mru_cache_unittest.cc", 1933 "containers/mru_cache_unittest.cc",
1929 "containers/small_map_unittest.cc", 1934 "containers/small_map_unittest.cc",
1930 "containers/stack_container_unittest.cc", 1935 "containers/stack_container_unittest.cc",
1931 "cpu_unittest.cc", 1936 "cpu_unittest.cc",
1932 "debug/activity_analyzer_unittest.cc", 1937 "debug/activity_analyzer_unittest.cc",
1933 "debug/activity_tracker_unittest.cc", 1938 "debug/activity_tracker_unittest.cc",
1934 "debug/crash_logging_unittest.cc", 1939 "debug/crash_logging_unittest.cc",
1935 "debug/debugger_unittest.cc", 1940 "debug/debugger_unittest.cc",
(...skipping 731 matching lines...) Expand 10 before | Expand all | Expand 10 after
2667 } 2672 }
2668 2673
2669 fuzzer_test("base_json_correctness_fuzzer") { 2674 fuzzer_test("base_json_correctness_fuzzer") {
2670 sources = [ 2675 sources = [
2671 "json/correctness_fuzzer.cc", 2676 "json/correctness_fuzzer.cc",
2672 ] 2677 ]
2673 deps = [ 2678 deps = [
2674 ":base", 2679 ":base",
2675 ] 2680 ]
2676 } 2681 }
OLDNEW
« no previous file with comments | « no previous file | base/containers/container_test_utils.h » ('j') | base/containers/flat_map.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698