| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 "ThreadingTraits.h", | 49 "ThreadingTraits.h", |
| 50 "TraceTraits.h", | 50 "TraceTraits.h", |
| 51 "Visitor.cpp", | 51 "Visitor.cpp", |
| 52 "Visitor.h", | 52 "Visitor.h", |
| 53 "WrapperVisitor.h", | 53 "WrapperVisitor.h", |
| 54 ] | 54 ] |
| 55 | 55 |
| 56 defines = [ "BLINK_PLATFORM_IMPLEMENTATION=1" ] | 56 defines = [ "BLINK_PLATFORM_IMPLEMENTATION=1" ] |
| 57 | 57 |
| 58 configs += [ | 58 configs += [ |
| 59 "//third_party/WebKit/Source:blink_pch", |
| 59 "//third_party/WebKit/Source:config", | 60 "//third_party/WebKit/Source:config", |
| 60 "//third_party/WebKit/Source:non_test_config", | 61 "//third_party/WebKit/Source:non_test_config", |
| 61 "//third_party/WebKit/Source:inside_blink", | 62 "//third_party/WebKit/Source:inside_blink", |
| 62 "//third_party/WebKit/Source:features", | 63 "//third_party/WebKit/Source:features", |
| 63 "//build/config/compiler:no_size_t_to_int_warning", | 64 "//build/config/compiler:no_size_t_to_int_warning", |
| 64 ] | 65 ] |
| 65 | 66 |
| 66 deps = [ | 67 deps = [ |
| 67 "//base", | 68 "//base", |
| 68 "//third_party/WebKit/Source/platform:make_platform_generated", | 69 "//third_party/WebKit/Source/platform:make_platform_generated", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 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 |