| 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/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//sky/engine/config.gni") | 6 import("//sky/engine/config.gni") |
| 7 | 7 |
| 8 visibility = [ "//sky/*" ] | 8 visibility = [ "//sky/*" ] |
| 9 | 9 |
| 10 platform_web_unittest_files = [ | 10 platform_web_unittest_files = [ |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 "WebDocument.cpp", | 59 "WebDocument.cpp", |
| 60 "WebElement.cpp", | 60 "WebElement.cpp", |
| 61 "WebFontDescription.cpp", | 61 "WebFontDescription.cpp", |
| 62 "WebFontImpl.cpp", | 62 "WebFontImpl.cpp", |
| 63 "WebFontImpl.h", | 63 "WebFontImpl.h", |
| 64 "WebFrame.cpp", | 64 "WebFrame.cpp", |
| 65 "WebGlyphCache.cpp", | 65 "WebGlyphCache.cpp", |
| 66 "WebHitTestResult.cpp", | 66 "WebHitTestResult.cpp", |
| 67 "WebImageCache.cpp", | 67 "WebImageCache.cpp", |
| 68 "WebImageDecoder.cpp", | 68 "WebImageDecoder.cpp", |
| 69 "WebInputEvent.cpp", | |
| 70 "WebInputEventConversion.cpp", | 69 "WebInputEventConversion.cpp", |
| 71 "WebInputEventConversion.h", | 70 "WebInputEventConversion.h", |
| 72 "Sky.cpp", | 71 "Sky.cpp", |
| 73 "WebLeakDetector.cpp", | 72 "WebLeakDetector.cpp", |
| 74 "WebLocalFrameImpl.cpp", | 73 "WebLocalFrameImpl.cpp", |
| 75 "WebLocalFrameImpl.h", | 74 "WebLocalFrameImpl.h", |
| 76 "WebNode.cpp", | 75 "WebNode.cpp", |
| 77 "WebRange.cpp", | 76 "WebRange.cpp", |
| 78 "WebRuntimeFeatures.cpp", | 77 "WebRuntimeFeatures.cpp", |
| 79 "WebScopedUserGesture.cpp", | 78 "WebScopedUserGesture.cpp", |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 configs += [ "//sky/engine:config" ] | 157 configs += [ "//sky/engine:config" ] |
| 159 | 158 |
| 160 if (!is_component_build) { | 159 if (!is_component_build) { |
| 161 deps += [ "//sky/engine/core" ] | 160 deps += [ "//sky/engine/core" ] |
| 162 | 161 |
| 163 configs += [ "//sky/engine:inside_blink" ] | 162 configs += [ "//sky/engine:inside_blink" ] |
| 164 | 163 |
| 165 sources += platform_web_unittest_files | 164 sources += platform_web_unittest_files |
| 166 } | 165 } |
| 167 } | 166 } |
| OLD | NEW |