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

Side by Side Diff: base/BUILD.gn

Issue 636783002: Use C++11 atomics (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use #if defined() instead of #ifdef Created 6 years, 2 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/atomicops.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 import("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 if (is_android) { 7 if (is_android) {
8 import("//build/config/android/rules.gni") 8 import("//build/config/android/rules.gni")
9 } 9 }
10 10
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 "async_socket_io_handler.h", 71 "async_socket_io_handler.h",
72 "async_socket_io_handler_posix.cc", 72 "async_socket_io_handler_posix.cc",
73 "async_socket_io_handler_win.cc", 73 "async_socket_io_handler_win.cc",
74 "at_exit.cc", 74 "at_exit.cc",
75 "at_exit.h", 75 "at_exit.h",
76 "atomic_ref_count.h", 76 "atomic_ref_count.h",
77 "atomic_sequence_num.h", 77 "atomic_sequence_num.h",
78 "atomicops.h", 78 "atomicops.h",
79 "atomicops_internals_gcc.h", 79 "atomicops_internals_gcc.h",
80 "atomicops_internals_mac.h", 80 "atomicops_internals_mac.h",
81 "atomicops_internals_tsan.h", 81 "atomicops_internals_portable.h",
82 "atomicops_internals_x86_gcc.cc", 82 "atomicops_internals_x86_gcc.cc",
83 "atomicops_internals_x86_gcc.h", 83 "atomicops_internals_x86_gcc.h",
84 "atomicops_internals_x86_msvc.h", 84 "atomicops_internals_x86_msvc.h",
85 "auto_reset.h", 85 "auto_reset.h",
86 "barrier_closure.cc", 86 "barrier_closure.cc",
87 "barrier_closure.h", 87 "barrier_closure.h",
88 "base_export.h", 88 "base_export.h",
89 "base_paths.cc", 89 "base_paths.cc",
90 "base_paths.h", 90 "base_paths.h",
91 "base_paths_android.cc", 91 "base_paths_android.cc",
(...skipping 1397 matching lines...) Expand 10 before | Expand all | Expand 10 after
1489 # GYP: //base.gyp:base_unittests_apk 1489 # GYP: //base.gyp:base_unittests_apk
1490 unittest_apk("base_unittests_apk") { 1490 unittest_apk("base_unittests_apk") {
1491 deps = [ 1491 deps = [
1492 ":base_java", 1492 ":base_java",
1493 ":base_java_unittest_support", 1493 ":base_java_unittest_support",
1494 ":base_unittests", 1494 ":base_unittests",
1495 ] 1495 ]
1496 unittests_dep = ":base_unittests" 1496 unittests_dep = ":base_unittests"
1497 } 1497 }
1498 } 1498 }
OLDNEW
« no previous file with comments | « no previous file | base/atomicops.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698