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

Side by Side Diff: third_party/sqlite/BUILD.gn

Issue 1250913002: patch from chinmaygarde@ to make progress on mac, ios. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tweaks needed to get base_unittests to compile Created 5 years, 4 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
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 config("sqlite_config") { 5 config("sqlite_config") {
6 include_dirs = [ "." ] 6 include_dirs = [ "." ]
7 } 7 }
8 8
9 source_set("sqlite") { 9 source_set("sqlite") {
10 sources = [ 10 sources = [
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 93
94 deps = [ 94 deps = [
95 ":sqlite", 95 ":sqlite",
96 "//third_party/icu", 96 "//third_party/icu",
97 ] 97 ]
98 } 98 }
99 } 99 }
100 100
101 if (is_ios) { 101 if (is_ios) {
102 source_set("sqlite_regexp") { 102 source_set("sqlite_regexp") {
103 defines += [ 103 defines = [
104 # Necessary to statically compile the extension. 104 # Necessary to statically compile the extension.
105 "SQLITE_CORE", 105 "SQLITE_CORE",
106 ] 106 ]
107 sources = [ 107 sources = [
108 "src/ext/icu/icu.c", 108 "src/ext/icu/icu.c",
109 ] 109 ]
110 deps = [ 110 deps = [
111 "//third_party/icu", 111 "//third_party/icu",
112 ] 112 ]
113 } 113 }
114 } 114 }
OLDNEW
« testing/test.gni ('K') | « testing/test.gni ('k') | ui/base/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698