| 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("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 source_set("heap") { | 7 source_set("heap") { |
| 8 # This target is a logical part of the platform and only the platform target | 8 # This target is a logical part of the platform and only the platform target |
| 9 # should depend on it. | 9 # should depend on it. |
| 10 visibility = [ "//third_party/WebKit/Source/platform" ] | 10 visibility = [ "//third_party/WebKit/Source/platform" ] |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 configs += [ | 83 configs += [ |
| 84 "//third_party/WebKit/Source/wtf:wtf_config", | 84 "//third_party/WebKit/Source/wtf:wtf_config", |
| 85 "//third_party/WebKit/Source:config", | 85 "//third_party/WebKit/Source:config", |
| 86 "//third_party/WebKit/Source:inside_blink", | 86 "//third_party/WebKit/Source:inside_blink", |
| 87 ] | 87 ] |
| 88 | 88 |
| 89 deps = [ | 89 deps = [ |
| 90 "//base", | 90 "//base", |
| 91 "//base/test:test_support", | 91 "//base/test:test_support", |
| 92 "//content/test:test_support", | 92 "//content/test:test_support", |
| 93 "//mojo/edk/system", |
| 93 "//testing/gmock", | 94 "//testing/gmock", |
| 94 "//testing/gtest", | 95 "//testing/gtest", |
| 95 "//third_party/WebKit/Source/platform:test_support", | 96 "//third_party/WebKit/Source/platform:test_support", |
| 96 "//third_party/WebKit/Source/wtf", | 97 "//third_party/WebKit/Source/wtf", |
| 97 ] | 98 ] |
| 98 if (is_android) { | 99 if (is_android) { |
| 99 deps += [ | 100 deps += [ |
| 100 "//base:base_java", | 101 "//base:base_java", |
| 101 "//content/shell/android:content_shell_assets", | 102 "//content/shell/android:content_shell_assets", |
| 102 "//net/android:net_java", | 103 "//net/android:net_java", |
| 103 ] | 104 ] |
| 104 } | 105 } |
| 105 } | 106 } |
| OLD | NEW |