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

Side by Side Diff: base/BUILD.gn

Issue 1837233002: Optional <TimeDelta> since they may be non existent. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review comments incorporation 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/base.gyp » ('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 546 matching lines...) Expand 10 before | Expand all | Expand 10 after
557 "native_library_win.cc", 557 "native_library_win.cc",
558 "nix/mime_util_xdg.cc", 558 "nix/mime_util_xdg.cc",
559 "nix/mime_util_xdg.h", 559 "nix/mime_util_xdg.h",
560 "nix/xdg_util.cc", 560 "nix/xdg_util.cc",
561 "nix/xdg_util.h", 561 "nix/xdg_util.h",
562 "numerics/safe_conversions.h", 562 "numerics/safe_conversions.h",
563 "numerics/safe_conversions_impl.h", 563 "numerics/safe_conversions_impl.h",
564 "numerics/safe_math.h", 564 "numerics/safe_math.h",
565 "numerics/safe_math_impl.h", 565 "numerics/safe_math_impl.h",
566 "observer_list.h", 566 "observer_list.h",
567 "observer_list_threadsafe.h", 567 "observer_list_threadsafe.h",
shivanisha 2016/03/29 18:57:16 Ignore this file for review. Added here for compil
568 "optional.h",
568 "os_compat_android.cc", 569 "os_compat_android.cc",
569 "os_compat_android.h", 570 "os_compat_android.h",
570 "os_compat_nacl.cc", 571 "os_compat_nacl.cc",
571 "os_compat_nacl.h", 572 "os_compat_nacl.h",
572 "path_service.cc", 573 "path_service.cc",
573 "path_service.h", 574 "path_service.h",
574 "pending_task.cc", 575 "pending_task.cc",
575 "pending_task.h", 576 "pending_task.h",
576 "pickle.cc", 577 "pickle.cc",
577 "pickle.h", 578 "pickle.h",
(...skipping 1186 matching lines...) Expand 10 before | Expand all | Expand 10 after
1764 "metrics/persistent_histogram_allocator_unittest.cc", 1765 "metrics/persistent_histogram_allocator_unittest.cc",
1765 "metrics/persistent_memory_allocator_unittest.cc", 1766 "metrics/persistent_memory_allocator_unittest.cc",
1766 "metrics/persistent_sample_map_unittest.cc", 1767 "metrics/persistent_sample_map_unittest.cc",
1767 "metrics/sample_map_unittest.cc", 1768 "metrics/sample_map_unittest.cc",
1768 "metrics/sample_vector_unittest.cc", 1769 "metrics/sample_vector_unittest.cc",
1769 "metrics/sparse_histogram_unittest.cc", 1770 "metrics/sparse_histogram_unittest.cc",
1770 "metrics/statistics_recorder_unittest.cc", 1771 "metrics/statistics_recorder_unittest.cc",
1771 "native_library_unittest.cc", 1772 "native_library_unittest.cc",
1772 "numerics/safe_numerics_unittest.cc", 1773 "numerics/safe_numerics_unittest.cc",
1773 "observer_list_unittest.cc", 1774 "observer_list_unittest.cc",
1775 "optional_unittest.cc",
1774 "os_compat_android_unittest.cc", 1776 "os_compat_android_unittest.cc",
1775 "path_service_unittest.cc", 1777 "path_service_unittest.cc",
1776 "pickle_unittest.cc", 1778 "pickle_unittest.cc",
1777 "posix/file_descriptor_shuffle_unittest.cc", 1779 "posix/file_descriptor_shuffle_unittest.cc",
1778 "posix/unix_domain_socket_linux_unittest.cc", 1780 "posix/unix_domain_socket_linux_unittest.cc",
1779 "power_monitor/power_monitor_unittest.cc", 1781 "power_monitor/power_monitor_unittest.cc",
1780 "process/memory_unittest.cc", 1782 "process/memory_unittest.cc",
1781 "process/memory_unittest_mac.h", 1783 "process/memory_unittest_mac.h",
1782 "process/memory_unittest_mac.mm", 1784 "process/memory_unittest_mac.mm",
1783 "process/process_metrics_unittest.cc", 1785 "process/process_metrics_unittest.cc",
(...skipping 536 matching lines...) Expand 10 before | Expand all | Expand 10 after
2320 2322
2321 # GYP: //base.gyp:base_java_unittest_support 2323 # GYP: //base.gyp:base_java_unittest_support
2322 android_library("base_java_unittest_support") { 2324 android_library("base_java_unittest_support") {
2323 deps = [ 2325 deps = [
2324 ":base_java", 2326 ":base_java",
2325 ] 2327 ]
2326 java_files = 2328 java_files =
2327 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 2329 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
2328 } 2330 }
2329 } 2331 }
OLDNEW
« no previous file with comments | « no previous file | base/base.gyp » ('j') | base/base.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698