| 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("//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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 "//components/user_prefs", | 154 "//components/user_prefs", |
| 155 "//content/test:test_support", | 155 "//content/test:test_support", |
| 156 "//device/bluetooth:mocks", | 156 "//device/bluetooth:mocks", |
| 157 "//device/serial", | 157 "//device/serial", |
| 158 "//device/serial:test_support", | 158 "//device/serial:test_support", |
| 159 "//extensions/common", | 159 "//extensions/common", |
| 160 "//extensions/common/api/cast_channel:cast_channel_proto", | 160 "//extensions/common/api/cast_channel:cast_channel_proto", |
| 161 "//extensions/renderer", | 161 "//extensions/renderer", |
| 162 "//extensions/strings", | 162 "//extensions/strings", |
| 163 "//extensions/utility", | 163 "//extensions/utility", |
| 164 "//mojo/application/public/interfaces", |
| 164 "//mojo/environment:chromium", | 165 "//mojo/environment:chromium", |
| 165 "//testing/gmock", | 166 "//testing/gmock", |
| 166 "//testing/gtest", | 167 "//testing/gtest", |
| 167 "//third_party/leveldatabase", | 168 "//third_party/leveldatabase", |
| 168 "//third_party/mojo/src/mojo/edk/js", | 169 "//third_party/mojo/src/mojo/edk/js", |
| 169 "//third_party/mojo/src/mojo/edk/system", | 170 "//third_party/mojo/src/mojo/edk/system", |
| 170 "//third_party/mojo/src/mojo/public/cpp/bindings", | 171 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 171 "//third_party/mojo/src/mojo/public/interfaces/application", | |
| 172 ] | 172 ] |
| 173 | 173 |
| 174 if (is_win) { | 174 if (is_win) { |
| 175 deps += [ "//base/allocator" ] | 175 deps += [ "//base/allocator" ] |
| 176 } | 176 } |
| 177 | 177 |
| 178 if (is_chromeos) { | 178 if (is_chromeos) { |
| 179 sources += [ | 179 sources += [ |
| 180 # TODO(rockot): There are two implementations of VpnServiceFactory, a | 180 # TODO(rockot): There are two implementations of VpnServiceFactory, a |
| 181 # stub in app_shell and a real one in Chrome. This is wrong. | 181 # stub in app_shell and a real one in Chrome. This is wrong. |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 ] | 215 ] |
| 216 | 216 |
| 217 if (is_win) { | 217 if (is_win) { |
| 218 deps += [ "//base/allocator" ] | 218 deps += [ "//base/allocator" ] |
| 219 } | 219 } |
| 220 | 220 |
| 221 if (is_mac) { | 221 if (is_mac) { |
| 222 deps += [ "shell:app_shell" ] # Needed for App Shell.app's Helper. | 222 deps += [ "shell:app_shell" ] # Needed for App Shell.app's Helper. |
| 223 } | 223 } |
| 224 } | 224 } |
| OLD | NEW |