| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 sources = | 49 sources = |
| 50 rebase_path(content_tests_gypi_values.test_support_content_sources, | 50 rebase_path(content_tests_gypi_values.test_support_content_sources, |
| 51 ".", | 51 ".", |
| 52 "//content") | 52 "//content") |
| 53 | 53 |
| 54 public_deps += [ "//third_party/WebKit/public:blink" ] | 54 public_deps += [ "//third_party/WebKit/public:blink" ] |
| 55 deps += [ | 55 deps += [ |
| 56 "//content/browser/speech/proto", | 56 "//content/browser/speech/proto", |
| 57 "//content/public/child:child_sources", | 57 "//content/public/child:child_sources", |
| 58 "//content/gpu", | 58 "//content/gpu", |
| 59 "//content/public/plugin:plugin_sources", |
| 59 "//content/public/renderer:renderer_sources", | 60 "//content/public/renderer:renderer_sources", |
| 60 "//content/public/utility:utility_sources", | 61 "//content/public/utility:utility_sources", |
| 61 "//content/shell:pak", | 62 "//content/shell:pak", |
| 62 "//cc", | 63 "//cc", |
| 63 "//cc:test_support", | 64 "//cc:test_support", |
| 64 "//ipc/mojo", | 65 "//ipc/mojo", |
| 65 "//media", | 66 "//media", |
| 66 "//ppapi:ppapi_host", | 67 "//ppapi:ppapi_host", |
| 67 "//ppapi:ppapi_proxy", | 68 "//ppapi:ppapi_proxy", |
| 68 "//ppapi:ppapi_shared", | 69 "//ppapi:ppapi_shared", |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 if (use_aura || is_mac) { | 119 if (use_aura || is_mac) { |
| 119 deps += [ "//ui/compositor" ] | 120 deps += [ "//ui/compositor" ] |
| 120 } | 121 } |
| 121 | 122 |
| 122 if (use_ozone) { | 123 if (use_ozone) { |
| 123 deps += [ "//ui/ozone" ] | 124 deps += [ "//ui/ozone" ] |
| 124 } | 125 } |
| 125 | 126 |
| 126 if (is_win) { | 127 if (is_win) { |
| 127 deps += [ "//third_party/iaccessible2" ] | 128 deps += [ "//third_party/iaccessible2" ] |
| 129 sources += [ "../app/startup_helper_win.cc" ] |
| 128 } | 130 } |
| 129 | 131 |
| 130 if (!is_android && !is_ios) { | 132 if (!is_android && !is_ios) { |
| 131 sources += [ | 133 sources += [ |
| 132 "../browser/compositor/test/no_transport_image_transport_factory.cc", | 134 "../browser/compositor/test/no_transport_image_transport_factory.cc", |
| 133 "../browser/compositor/test/no_transport_image_transport_factory.h", | 135 "../browser/compositor/test/no_transport_image_transport_factory.h", |
| 134 ] | 136 ] |
| 135 deps += [ | 137 deps += [ |
| 136 "//ui/compositor", | 138 "//ui/compositor", |
| 137 "//third_party/libvpx", | 139 "//third_party/libvpx", |
| (...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 690 "//content/public/common", | 692 "//content/public/common", |
| 691 "//testing/gtest", | 693 "//testing/gtest", |
| 692 "//third_party/WebKit/public:blink", | 694 "//third_party/WebKit/public:blink", |
| 693 "//ui/base", | 695 "//ui/base", |
| 694 "//ui/gfx", | 696 "//ui/gfx", |
| 695 "//ui/gfx/geometry", | 697 "//ui/gfx/geometry", |
| 696 "//ui/gl", | 698 "//ui/gl", |
| 697 ] | 699 ] |
| 698 } | 700 } |
| 699 } | 701 } |
| OLD | NEW |