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

Side by Side Diff: extensions/BUILD.gn

Issue 1554443003: Stop linking in the old Mojo EDK. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge and fix new flaky test Created 4 years, 11 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 | « device/vibration/vibration.gyp ('k') | extensions/extensions_tests.gyp » ('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 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 # TODO(rockot) bug 505926: Don't include chrome files from here. 5 # TODO(rockot) bug 505926: Don't include chrome files from here.
6 # See chrome_browser_tests_extensions_sources below 6 # See chrome_browser_tests_extensions_sources below
7 import("//chrome/chrome_tests.gni") 7 import("//chrome/chrome_tests.gni")
8 import("//extensions/extensions.gni") 8 import("//extensions/extensions.gni")
9 import("//testing/test.gni") 9 import("//testing/test.gni")
10 import("//tools/grit/grit_rule.gni") 10 import("//tools/grit/grit_rule.gni")
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 "//device/bluetooth:mocks", 184 "//device/bluetooth:mocks",
185 "//device/core", 185 "//device/core",
186 "//device/hid", 186 "//device/hid",
187 "//device/serial", 187 "//device/serial",
188 "//device/serial:test_support", 188 "//device/serial:test_support",
189 "//extensions/common", 189 "//extensions/common",
190 "//extensions/common/api/cast_channel:cast_channel_proto", 190 "//extensions/common/api/cast_channel:cast_channel_proto",
191 "//extensions/renderer", 191 "//extensions/renderer",
192 "//extensions/strings", 192 "//extensions/strings",
193 "//extensions/utility", 193 "//extensions/utility",
194 "//mojo/edk/js",
195 "//mojo/edk/system",
194 "//mojo/environment:chromium", 196 "//mojo/environment:chromium",
195 "//mojo/public/cpp/bindings", 197 "//mojo/public/cpp/bindings",
196 "//mojo/shell/public/interfaces", 198 "//mojo/shell/public/interfaces",
197 "//testing/gmock", 199 "//testing/gmock",
198 "//testing/gtest", 200 "//testing/gtest",
199 "//third_party/leveldatabase", 201 "//third_party/leveldatabase",
200 "//third_party/mojo/src/mojo/edk/js",
201 "//third_party/mojo/src/mojo/edk/system",
202 ] 202 ]
203 203
204 data_deps = [ 204 data_deps = [
205 "//third_party/mesa:osmesa", 205 "//third_party/mesa:osmesa",
206 ] 206 ]
207 207
208 if (is_win) { 208 if (is_win) {
209 deps += [ "//base/allocator" ] 209 deps += [ "//base/allocator" ]
210 } 210 }
211 211
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 # TODO(yoz): find the right deps 256 # TODO(yoz): find the right deps
257 "//base", 257 "//base",
258 "//base:prefs_test_support", 258 "//base:prefs_test_support",
259 "//base/test:test_support", 259 "//base/test:test_support",
260 "//components/storage_monitor:test_support", 260 "//components/storage_monitor:test_support",
261 "//content/test:test_support", 261 "//content/test:test_support",
262 "//device/bluetooth:mocks", 262 "//device/bluetooth:mocks",
263 "//device/core:mocks", 263 "//device/core:mocks",
264 "//device/hid:mocks", 264 "//device/hid:mocks",
265 "//device/usb:mocks", 265 "//device/usb:mocks",
266 "//mojo/edk/js",
267 "//mojo/edk/system",
266 "//mojo/environment:chromium", 268 "//mojo/environment:chromium",
267 "//mojo/public/cpp/bindings", 269 "//mojo/public/cpp/bindings",
268 "//testing/gmock", 270 "//testing/gmock",
269 "//testing/gtest", 271 "//testing/gtest",
270 "//third_party/mojo/src/mojo/edk/js",
271 "//third_party/mojo/src/mojo/edk/system",
272 ] 272 ]
273 273
274 data_deps = [ 274 data_deps = [
275 "//third_party/mesa:osmesa", 275 "//third_party/mesa:osmesa",
276 ] 276 ]
277 277
278 if (is_win) { 278 if (is_win) {
279 deps += [ "//base/allocator" ] 279 deps += [ "//base/allocator" ]
280 280
281 if (target_cpu == "x86") { 281 if (target_cpu == "x86") {
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
394 "//testing/gtest", 394 "//testing/gtest",
395 "//third_party/hunspell", 395 "//third_party/hunspell",
396 "//third_party/icu", 396 "//third_party/icu",
397 "//third_party/libpng", 397 "//third_party/libpng",
398 "//third_party/zlib", 398 "//third_party/zlib",
399 "//ui/base:test_support", 399 "//ui/base:test_support",
400 "//ui/resources:ui_test_pak", 400 "//ui/resources:ui_test_pak",
401 "//ui/web_dialogs:test_support", 401 "//ui/web_dialogs:test_support",
402 ] 402 ]
403 } 403 }
OLDNEW
« no previous file with comments | « device/vibration/vibration.gyp ('k') | extensions/extensions_tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698