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

Side by Side Diff: base/BUILD.gn

Issue 610313003: [WIP][Base] Use variadic template for Callback and Bind (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: wrap tuple 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/base.gypi » ('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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 "bind_internal.h", 108 "bind_internal.h",
109 "bind_internal_win.h", 109 "bind_internal_win.h",
110 "bits.h", 110 "bits.h",
111 "build_time.cc", 111 "build_time.cc",
112 "build_time.h", 112 "build_time.h",
113 "callback.h", 113 "callback.h",
114 "callback_helpers.cc", 114 "callback_helpers.cc",
115 "callback_helpers.h", 115 "callback_helpers.h",
116 "callback_internal.cc", 116 "callback_internal.cc",
117 "callback_internal.h", 117 "callback_internal.h",
118 "callback_tuple.h",
118 "cancelable_callback.h", 119 "cancelable_callback.h",
119 "command_line.cc", 120 "command_line.cc",
120 "command_line.h", 121 "command_line.h",
121 "compiler_specific.h", 122 "compiler_specific.h",
122 "containers/adapters.h", 123 "containers/adapters.h",
123 "containers/hash_tables.h", 124 "containers/hash_tables.h",
124 "containers/linked_list.h", 125 "containers/linked_list.h",
125 "containers/mru_cache.h", 126 "containers/mru_cache.h",
126 "containers/small_map.h", 127 "containers/small_map.h",
127 "containers/stack_container.h", 128 "containers/stack_container.h",
(...skipping 1361 matching lines...) Expand 10 before | Expand all | Expand 10 after
1489 # GYP: //base.gyp:base_unittests_apk 1490 # GYP: //base.gyp:base_unittests_apk
1490 unittest_apk("base_unittests_apk") { 1491 unittest_apk("base_unittests_apk") {
1491 deps = [ 1492 deps = [
1492 ":base_java", 1493 ":base_java",
1493 ":base_java_unittest_support", 1494 ":base_java_unittest_support",
1494 ":base_unittests", 1495 ":base_unittests",
1495 ] 1496 ]
1496 unittests_dep = ":base_unittests" 1497 unittests_dep = ":base_unittests"
1497 } 1498 }
1498 } 1499 }
OLDNEW
« no previous file with comments | « no previous file | base/base.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698