| 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("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//extensions/features/features.gni") | 7 import("//extensions/features/features.gni") |
| 8 | 8 |
| 9 assert(!is_android && !is_ios) | 9 assert(!is_android && !is_ios) |
| 10 | 10 |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 | 72 |
| 73 static_library("test_support") { | 73 static_library("test_support") { |
| 74 testonly = true | 74 testonly = true |
| 75 sources = [ | 75 sources = [ |
| 76 "test/app_window_waiter.cc", | 76 "test/app_window_waiter.cc", |
| 77 "test/app_window_waiter.h", | 77 "test/app_window_waiter.h", |
| 78 ] | 78 ] |
| 79 | 79 |
| 80 public_deps = [ | 80 public_deps = [ |
| 81 "//content/public/browser", | 81 "//content/public/browser", |
| 82 "//extensions/browser", |
| 83 "//extensions/common", |
| 82 ] | 84 ] |
| 83 } | 85 } |
| OLD | NEW |