| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 "FrameLoaderClientImpl.cpp", | 49 "FrameLoaderClientImpl.cpp", |
| 50 "FrameLoaderClientImpl.h", | 50 "FrameLoaderClientImpl.h", |
| 51 "PageWidgetDelegate.cpp", | 51 "PageWidgetDelegate.cpp", |
| 52 "PageWidgetDelegate.h", | 52 "PageWidgetDelegate.h", |
| 53 "SpellCheckerClientImpl.cpp", | 53 "SpellCheckerClientImpl.cpp", |
| 54 "SpellCheckerClientImpl.h", | 54 "SpellCheckerClientImpl.h", |
| 55 "WebArrayBufferConverter.cpp", | 55 "WebArrayBufferConverter.cpp", |
| 56 "WebArrayBufferView.cpp", | 56 "WebArrayBufferView.cpp", |
| 57 "WebCache.cpp", | 57 "WebCache.cpp", |
| 58 "WebCachedURLRequest.cpp", | 58 "WebCachedURLRequest.cpp", |
| 59 "WebCustomElement.cpp", | |
| 60 "WebDocument.cpp", | 59 "WebDocument.cpp", |
| 61 "WebElement.cpp", | 60 "WebElement.cpp", |
| 62 "WebFontDescription.cpp", | 61 "WebFontDescription.cpp", |
| 63 "WebFontImpl.cpp", | 62 "WebFontImpl.cpp", |
| 64 "WebFontImpl.h", | 63 "WebFontImpl.h", |
| 65 "WebFrame.cpp", | 64 "WebFrame.cpp", |
| 66 "WebGlyphCache.cpp", | 65 "WebGlyphCache.cpp", |
| 67 "WebHitTestResult.cpp", | 66 "WebHitTestResult.cpp", |
| 68 "WebImageCache.cpp", | 67 "WebImageCache.cpp", |
| 69 "WebImageDecoder.cpp", | 68 "WebImageDecoder.cpp", |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 configs += [ "//sky/engine:config" ] | 160 configs += [ "//sky/engine:config" ] |
| 162 | 161 |
| 163 if (!is_component_build) { | 162 if (!is_component_build) { |
| 164 deps += [ "//sky/engine/core" ] | 163 deps += [ "//sky/engine/core" ] |
| 165 | 164 |
| 166 configs += [ "//sky/engine:inside_blink" ] | 165 configs += [ "//sky/engine:inside_blink" ] |
| 167 | 166 |
| 168 sources += platform_web_unittest_files | 167 sources += platform_web_unittest_files |
| 169 } | 168 } |
| 170 } | 169 } |
| OLD | NEW |