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

Side by Side Diff: extensions/BUILD.gn

Issue 932063003: Add split tunnel interface to vpnProvider (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed nits from Benjamin and a build failure Created 5 years, 10 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 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("//extensions/extensions.gni") 5 import("//extensions/extensions.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 import("//tools/grit/grit_rule.gni") 7 import("//tools/grit/grit_rule.gni")
8 import("//tools/grit/repack.gni") 8 import("//tools/grit/repack.gni")
9 9
10 assert(enable_extensions) 10 assert(enable_extensions)
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 "//content/test:test_support", 207 "//content/test:test_support",
208 "//device/bluetooth:mocks", 208 "//device/bluetooth:mocks",
209 "//mojo/environment:chromium", 209 "//mojo/environment:chromium",
210 "//testing/gmock", 210 "//testing/gmock",
211 "//testing/gtest", 211 "//testing/gtest",
212 "//third_party/mojo/src/mojo/edk/js", 212 "//third_party/mojo/src/mojo/edk/js",
213 "//third_party/mojo/src/mojo/edk/system", 213 "//third_party/mojo/src/mojo/edk/system",
214 "//third_party/mojo/src/mojo/public/cpp/bindings", 214 "//third_party/mojo/src/mojo/public/cpp/bindings",
215 ] 215 ]
216 216
217 if (is_chromeos) {
218 sources += rebase_path(
219 extensions_tests_gypi_values.extensions_browsertests_sources_chromeo s,
220 ".",
221 "//extensions")
222 }
223
217 if (is_win) { 224 if (is_win) {
218 deps += [ "//base/allocator" ] 225 deps += [ "//base/allocator" ]
219 } 226 }
220 227
221 if (is_mac) { 228 if (is_mac) {
222 deps += [ "shell:app_shell" ] # Needed for App Shell.app's Helper. 229 deps += [ "shell:app_shell" ] # Needed for App Shell.app's Helper.
223 } 230 }
224 } 231 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698