| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 "WebDocument.cpp", | 76 "WebDocument.cpp", |
| 77 "WebDocumentType.cpp", | 77 "WebDocumentType.cpp", |
| 78 "WebElement.cpp", | 78 "WebElement.cpp", |
| 79 "WebEntities.cpp", | 79 "WebEntities.cpp", |
| 80 "WebEntities.h", | 80 "WebEntities.h", |
| 81 "WebFontDescription.cpp", | 81 "WebFontDescription.cpp", |
| 82 "WebFontImpl.cpp", | 82 "WebFontImpl.cpp", |
| 83 "WebFontImpl.h", | 83 "WebFontImpl.h", |
| 84 "WebFrame.cpp", | 84 "WebFrame.cpp", |
| 85 "WebGlyphCache.cpp", | 85 "WebGlyphCache.cpp", |
| 86 "WebHeap.cpp", | |
| 87 "WebHitTestResult.cpp", | 86 "WebHitTestResult.cpp", |
| 88 "WebImageCache.cpp", | 87 "WebImageCache.cpp", |
| 89 "WebImageDecoder.cpp", | 88 "WebImageDecoder.cpp", |
| 90 "WebInputEvent.cpp", | 89 "WebInputEvent.cpp", |
| 91 "WebInputEventConversion.cpp", | 90 "WebInputEventConversion.cpp", |
| 92 "WebInputEventConversion.h", | 91 "WebInputEventConversion.h", |
| 93 "Sky.cpp", | 92 "Sky.cpp", |
| 94 "WebLeakDetector.cpp", | 93 "WebLeakDetector.cpp", |
| 95 "WebLocalFrameImpl.cpp", | 94 "WebLocalFrameImpl.cpp", |
| 96 "WebLocalFrameImpl.h", | 95 "WebLocalFrameImpl.h", |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 configs += [ "//sky/engine:config" ] | 184 configs += [ "//sky/engine:config" ] |
| 186 | 185 |
| 187 if (!is_component_build) { | 186 if (!is_component_build) { |
| 188 deps += [ "//sky/engine/core" ] | 187 deps += [ "//sky/engine/core" ] |
| 189 | 188 |
| 190 configs += [ "//sky/engine:inside_blink" ] | 189 configs += [ "//sky/engine:inside_blink" ] |
| 191 | 190 |
| 192 sources += platform_web_unittest_files | 191 sources += platform_web_unittest_files |
| 193 } | 192 } |
| 194 } | 193 } |
| OLD | NEW |