| 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 | 7 |
| 8 content_tests_gypi_values = exec_script( | 8 content_tests_gypi_values = exec_script( |
| 9 "//build/gypi_to_gn.py", | 9 "//build/gypi_to_gn.py", |
| 10 [ rebase_path("../content_tests.gypi"), | 10 [ rebase_path("../content_tests.gypi"), |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 deps += [ | 43 deps += [ |
| 44 "//content/child", | 44 "//content/child", |
| 45 "//content/common", | 45 "//content/common", |
| 46 "//content/gpu", | 46 "//content/gpu", |
| 47 "//content/ppapi_plugin", | 47 "//content/ppapi_plugin", |
| 48 "//content/renderer", | 48 "//content/renderer", |
| 49 "//content/utility", | 49 "//content/utility", |
| 50 "//content/worker", | 50 "//content/worker", |
| 51 "//cc", | 51 "//cc", |
| 52 "//cc:test_support", | 52 "//cc:test_support", |
| 53 "//media", |
| 54 "//ppapi:ppapi_host", |
| 53 "//ppapi:ppapi_proxy", | 55 "//ppapi:ppapi_proxy", |
| 54 "//ppapi:ppapi_shared", | 56 "//ppapi:ppapi_shared", |
| 55 "//third_party/WebKit/public:blink", | 57 "//third_party/WebKit/public:blink", |
| 56 "//ui/surface", | 58 "//ui/surface", |
| 57 "//v8", | 59 "//v8", |
| 58 "//webkit/child", | 60 "//webkit/child", |
| 59 "//webkit/common/gpu", | 61 "//webkit/common/gpu", |
| 60 "//webkit/browser:storage", | 62 "//webkit/browser:storage", |
| 61 "//webkit/common:storage", | 63 "//webkit/common:storage", |
| 62 # TODO(GYP) | 64 # TODO(GYP) |
| 63 #"//media", | |
| 64 #"//ppapi:host", | |
| 65 #"//ppapi:unittest_shared", | 65 #"//ppapi:unittest_shared", |
| 66 ] | 66 ] |
| 67 | 67 |
| 68 forward_dependent_configs_from = [ | 68 forward_dependent_configs_from = [ |
| 69 "//third_party/WebKit/public:blink", | 69 "//third_party/WebKit/public:blink", |
| 70 ] | 70 ] |
| 71 | 71 |
| 72 # TODO(GYP) | 72 # TODO(GYP) |
| 73 # These targets need include dirs and defines from the libjingle target in order | 73 # These targets need include dirs and defines from the libjingle target in order |
| 74 # to compile. | 74 # to compile. |
| (...skipping 10 matching lines...) Expand all Loading... |
| 85 ] | 85 ] |
| 86 | 86 |
| 87 deps += [ | 87 deps += [ |
| 88 "//third_party/libjingle:webrtc", | 88 "//third_party/libjingle:webrtc", |
| 89 "//third_party/libjingle:peerconnection", | 89 "//third_party/libjingle:peerconnection", |
| 90 "//third_party/webrtc/modules:video_capture", | 90 "//third_party/webrtc/modules:video_capture", |
| 91 ] | 91 ] |
| 92 } | 92 } |
| 93 | 93 |
| 94 if (use_glib) { | 94 if (use_glib) { |
| 95 deps += [ | 95 configs += [ |
| 96 "//build/linux/system:glib", | 96 "//build/config/linux:glib", |
| 97 ] | 97 ] |
| 98 } | 98 } |
| 99 | 99 |
| 100 if (use_aura) { | 100 if (use_aura) { |
| 101 deps += [ | 101 deps += [ |
| 102 "//ui/aura:test_support", | 102 "//ui/aura:test_support", |
| 103 "//ui/resources:test_pak", | 103 "//ui/resources:ui_test_pak", |
| 104 "//ui/wm", | 104 "//ui/wm", |
| 105 ] | 105 ] |
| 106 } | 106 } |
| 107 | 107 |
| 108 if (use_aura || is_mac) { | 108 if (use_aura || is_mac) { |
| 109 deps += [ "//ui/compositor" ] | 109 deps += [ "//ui/compositor" ] |
| 110 } | 110 } |
| 111 | 111 |
| 112 if (is_win) { | 112 if (is_win) { |
| 113 deps += [ "//third_party/iaccessible2" ] | 113 deps += [ "//third_party/iaccessible2" ] |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 if (is_android) { | 159 if (is_android) { |
| 160 # TODO(GYP) | 160 # TODO(GYP) |
| 161 # deps += [ "test_support_content_jni_headers" ] | 161 # deps += [ "test_support_content_jni_headers" ] |
| 162 } | 162 } |
| 163 } | 163 } |
| 164 | 164 |
| 165 } # !is_ios | 165 } # !is_ios |
| 166 | 166 |
| 167 # TODO(GYP): Unit test targets | 167 # TODO(GYP): Unit test targets |
| 168 | 168 |
| OLD | NEW |