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

Side by Side Diff: base/BUILD.gn

Issue 1245163002: Base: add Optional<T>. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: moar test changes for msvc Created 4 years, 8 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/base.gyp » ('j') | base/optional.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 541 matching lines...) Expand 10 before | Expand all | Expand 10 after
552 "nix/mime_util_xdg.cc", 552 "nix/mime_util_xdg.cc",
553 "nix/mime_util_xdg.h", 553 "nix/mime_util_xdg.h",
554 "nix/xdg_util.cc", 554 "nix/xdg_util.cc",
555 "nix/xdg_util.h", 555 "nix/xdg_util.h",
556 "numerics/safe_conversions.h", 556 "numerics/safe_conversions.h",
557 "numerics/safe_conversions_impl.h", 557 "numerics/safe_conversions_impl.h",
558 "numerics/safe_math.h", 558 "numerics/safe_math.h",
559 "numerics/safe_math_impl.h", 559 "numerics/safe_math_impl.h",
560 "observer_list.h", 560 "observer_list.h",
561 "observer_list_threadsafe.h", 561 "observer_list_threadsafe.h",
562 "optional.h",
562 "os_compat_android.cc", 563 "os_compat_android.cc",
563 "os_compat_android.h", 564 "os_compat_android.h",
564 "os_compat_nacl.cc", 565 "os_compat_nacl.cc",
565 "os_compat_nacl.h", 566 "os_compat_nacl.h",
566 "path_service.cc", 567 "path_service.cc",
567 "path_service.h", 568 "path_service.h",
568 "pending_task.cc", 569 "pending_task.cc",
569 "pending_task.h", 570 "pending_task.h",
570 "pickle.cc", 571 "pickle.cc",
571 "pickle.h", 572 "pickle.h",
(...skipping 1186 matching lines...) Expand 10 before | Expand all | Expand 10 after
1758 "metrics/persistent_histogram_allocator_unittest.cc", 1759 "metrics/persistent_histogram_allocator_unittest.cc",
1759 "metrics/persistent_memory_allocator_unittest.cc", 1760 "metrics/persistent_memory_allocator_unittest.cc",
1760 "metrics/persistent_sample_map_unittest.cc", 1761 "metrics/persistent_sample_map_unittest.cc",
1761 "metrics/sample_map_unittest.cc", 1762 "metrics/sample_map_unittest.cc",
1762 "metrics/sample_vector_unittest.cc", 1763 "metrics/sample_vector_unittest.cc",
1763 "metrics/sparse_histogram_unittest.cc", 1764 "metrics/sparse_histogram_unittest.cc",
1764 "metrics/statistics_recorder_unittest.cc", 1765 "metrics/statistics_recorder_unittest.cc",
1765 "native_library_unittest.cc", 1766 "native_library_unittest.cc",
1766 "numerics/safe_numerics_unittest.cc", 1767 "numerics/safe_numerics_unittest.cc",
1767 "observer_list_unittest.cc", 1768 "observer_list_unittest.cc",
1769 "optional_unittest.cc",
1768 "os_compat_android_unittest.cc", 1770 "os_compat_android_unittest.cc",
1769 "path_service_unittest.cc", 1771 "path_service_unittest.cc",
1770 "pickle_unittest.cc", 1772 "pickle_unittest.cc",
1771 "posix/file_descriptor_shuffle_unittest.cc", 1773 "posix/file_descriptor_shuffle_unittest.cc",
1772 "posix/unix_domain_socket_linux_unittest.cc", 1774 "posix/unix_domain_socket_linux_unittest.cc",
1773 "power_monitor/power_monitor_unittest.cc", 1775 "power_monitor/power_monitor_unittest.cc",
1774 "process/memory_unittest.cc", 1776 "process/memory_unittest.cc",
1775 "process/memory_unittest_mac.h", 1777 "process/memory_unittest_mac.h",
1776 "process/memory_unittest_mac.mm", 1778 "process/memory_unittest_mac.mm",
1777 "process/process_metrics_unittest.cc", 1779 "process/process_metrics_unittest.cc",
(...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after
2316 2318
2317 # GYP: //base.gyp:base_java_unittest_support 2319 # GYP: //base.gyp:base_java_unittest_support
2318 android_library("base_java_unittest_support") { 2320 android_library("base_java_unittest_support") {
2319 deps = [ 2321 deps = [
2320 ":base_java", 2322 ":base_java",
2321 ] 2323 ]
2322 java_files = 2324 java_files =
2323 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 2325 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
2324 } 2326 }
2325 } 2327 }
OLDNEW
« no previous file with comments | « no previous file | base/base.gyp » ('j') | base/optional.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698