| 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/crypto.gni") | 5 import("//build/config/crypto.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//build/module_args/v8.gni") | 8 import("//build/module_args/v8.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 10 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 "//media", | 68 "//media", |
| 69 "//ppapi/host", | 69 "//ppapi/host", |
| 70 "//ppapi/proxy", | 70 "//ppapi/proxy", |
| 71 "//ppapi/proxy:test_support", | 71 "//ppapi/proxy:test_support", |
| 72 "//ppapi/shared_impl", | 72 "//ppapi/shared_impl", |
| 73 "//ppapi/shared_impl:test_support", | 73 "//ppapi/shared_impl:test_support", |
| 74 "//storage/browser", | 74 "//storage/browser", |
| 75 "//storage/common", | 75 "//storage/common", |
| 76 "//ui/surface", | 76 "//ui/surface", |
| 77 "//v8", | 77 "//v8", |
| 78 "//webkit/common/gpu", | |
| 79 ] | 78 ] |
| 80 | 79 |
| 81 if (enable_plugins) { | 80 if (enable_plugins) { |
| 82 deps += [ "//content/ppapi_plugin" ] | 81 deps += [ "//content/ppapi_plugin" ] |
| 83 } | 82 } |
| 84 | 83 |
| 85 if (enable_webrtc) { | 84 if (enable_webrtc) { |
| 86 sources += [ | 85 sources += [ |
| 87 "../renderer/media/mock_data_channel_impl.cc", | 86 "../renderer/media/mock_data_channel_impl.cc", |
| 88 "../renderer/media/mock_data_channel_impl.h", | 87 "../renderer/media/mock_data_channel_impl.h", |
| (...skipping 619 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 708 "//content/public/common", | 707 "//content/public/common", |
| 709 "//testing/gtest", | 708 "//testing/gtest", |
| 710 "//third_party/WebKit/public:blink", | 709 "//third_party/WebKit/public:blink", |
| 711 "//ui/base", | 710 "//ui/base", |
| 712 "//ui/gfx", | 711 "//ui/gfx", |
| 713 "//ui/gfx/geometry", | 712 "//ui/gfx/geometry", |
| 714 "//ui/gl", | 713 "//ui/gl", |
| 715 ] | 714 ] |
| 716 } | 715 } |
| 717 } | 716 } |
| OLD | NEW |