OLD | NEW |
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 import("//tools/grit/repack.gni") | 7 import("//tools/grit/repack.gni") |
8 | 8 |
9 assert(enable_extensions) | 9 assert(enable_extensions) |
10 | 10 |
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
285 "//extensions/common", | 285 "//extensions/common", |
286 "//extensions/renderer", | 286 "//extensions/renderer", |
287 "//extensions/strings", | 287 "//extensions/strings", |
288 "//mojo/environment:chromium", | 288 "//mojo/environment:chromium", |
289 "//testing/gmock", | 289 "//testing/gmock", |
290 "//testing/gtest", | 290 "//testing/gtest", |
291 "//third_party/leveldatabase", | 291 "//third_party/leveldatabase", |
292 "//third_party/mojo/src/mojo/edk/js", | 292 "//third_party/mojo/src/mojo/edk/js", |
293 "//third_party/mojo/src/mojo/edk/system", | 293 "//third_party/mojo/src/mojo/edk/system", |
294 "//third_party/mojo/src/mojo/public/cpp/bindings", | 294 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 295 "//third_party/mojo/src/mojo/public/interfaces/application", |
295 ] | 296 ] |
296 | 297 |
297 if (is_win) { | 298 if (is_win) { |
298 deps += [ "//base/allocator" ] | 299 deps += [ "//base/allocator" ] |
299 } | 300 } |
300 } | 301 } |
301 } | 302 } |
302 | 303 |
303 test("extensions_browsertests") { | 304 test("extensions_browsertests") { |
304 sources = [ | 305 sources = [ |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
354 ] | 355 ] |
355 | 356 |
356 if (is_win) { | 357 if (is_win) { |
357 deps += [ "//base/allocator" ] | 358 deps += [ "//base/allocator" ] |
358 } | 359 } |
359 | 360 |
360 if (is_mac) { | 361 if (is_mac) { |
361 deps += [ "shell:app_shell" ] # Needed for App Shell.app's Helper. | 362 deps += [ "shell:app_shell" ] # Needed for App Shell.app's Helper. |
362 } | 363 } |
363 } | 364 } |
OLD | NEW |