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

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

Issue 1400243002: Aura on Android: Making it possible to generate GN build configuration (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Renaming chrome_browser_ui_android_sources to chrome_browser_ui_android_non_aura_sources. Created 5 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 | « chrome/chrome_browser_ui.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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("//testing/test.gni") 5 import("//testing/test.gni")
6 import("//tools/grit/grit_rule.gni") 6 import("//tools/grit/grit_rule.gni")
7 7
8 libaddressinput_util_files = [ 8 libaddressinput_util_files = [
9 "src/cpp/src/address_data.cc", 9 "src/cpp/src/address_data.cc",
10 "src/cpp/src/address_field.cc", 10 "src/cpp/src/address_field.cc",
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 128
129 deps = [ 129 deps = [
130 ":strings", 130 ":strings",
131 "//base", 131 "//base",
132 "//base:i18n", 132 "//base:i18n",
133 "//third_party/icu", 133 "//third_party/icu",
134 "//third_party/re2", 134 "//third_party/re2",
135 ] 135 ]
136 } 136 }
137 137
138 if (!is_android) { 138 if (!is_android || use_aura) {
139 # The list of files in libaddressinput.gypi. 139 # The list of files in libaddressinput.gypi.
140 gypi_values = exec_script("//build/gypi_to_gn.py", 140 gypi_values = exec_script("//build/gypi_to_gn.py",
141 [ rebase_path("src/cpp/libaddressinput.gypi") ], 141 [ rebase_path("src/cpp/libaddressinput.gypi") ],
142 "scope", 142 "scope",
143 [ "src/cpp/libaddressinput.gypi" ]) 143 [ "src/cpp/libaddressinput.gypi" ])
144 144
145 # This target provides more complicated functionality like pinging servers 145 # This target provides more complicated functionality like pinging servers
146 # for validation rules. 146 # for validation rules.
147 # GYP version: third_party/libaddressinput/libaddressinput.gyp:libaddressinput 147 # GYP version: third_party/libaddressinput/libaddressinput.gyp:libaddressinput
148 static_library("libaddressinput") { 148 static_library("libaddressinput") {
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 deps = [ 198 deps = [
199 ":libaddressinput", 199 ":libaddressinput",
200 ":strings", 200 ":strings",
201 "//base:prefs", 201 "//base:prefs",
202 "//base/test:run_all_unittests", 202 "//base/test:run_all_unittests",
203 "//net:test_support", 203 "//net:test_support",
204 "//testing/gtest", 204 "//testing/gtest",
205 ] 205 ]
206 } 206 }
207 } 207 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser_ui.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698