| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 "WebAXObject.cpp", | 65 "WebAXObject.cpp", |
| 66 "WebArrayBufferConverter.cpp", | 66 "WebArrayBufferConverter.cpp", |
| 67 "WebArrayBufferView.cpp", | 67 "WebArrayBufferView.cpp", |
| 68 "WebCache.cpp", | 68 "WebCache.cpp", |
| 69 "WebCachedURLRequest.cpp", | 69 "WebCachedURLRequest.cpp", |
| 70 "WebColorSuggestion.cpp", | 70 "WebColorSuggestion.cpp", |
| 71 "WebCustomElement.cpp", | 71 "WebCustomElement.cpp", |
| 72 "WebDOMCustomEvent.cpp", | 72 "WebDOMCustomEvent.cpp", |
| 73 "WebDOMError.cpp", | 73 "WebDOMError.cpp", |
| 74 "WebDOMEvent.cpp", | 74 "WebDOMEvent.cpp", |
| 75 "WebDOMMessageEvent.cpp", | |
| 76 "WebDOMMouseEvent.cpp", | 75 "WebDOMMouseEvent.cpp", |
| 77 "WebDOMProgressEvent.cpp", | 76 "WebDOMProgressEvent.cpp", |
| 78 "WebDOMResourceProgressEvent.cpp", | 77 "WebDOMResourceProgressEvent.cpp", |
| 79 "WebDatabase.cpp", | 78 "WebDatabase.cpp", |
| 80 "WebDocument.cpp", | 79 "WebDocument.cpp", |
| 81 "WebDocumentType.cpp", | 80 "WebDocumentType.cpp", |
| 82 "WebElement.cpp", | 81 "WebElement.cpp", |
| 83 "WebEntities.cpp", | 82 "WebEntities.cpp", |
| 84 "WebEntities.h", | 83 "WebEntities.h", |
| 85 "WebFontDescription.cpp", | 84 "WebFontDescription.cpp", |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 configs += [ "//sky/engine:config" ] | 189 configs += [ "//sky/engine:config" ] |
| 191 | 190 |
| 192 if (!is_component_build) { | 191 if (!is_component_build) { |
| 193 deps += [ "//sky/engine/core" ] | 192 deps += [ "//sky/engine/core" ] |
| 194 | 193 |
| 195 configs += [ "//sky/engine:inside_blink" ] | 194 configs += [ "//sky/engine:inside_blink" ] |
| 196 | 195 |
| 197 sources += platform_web_unittest_files | 196 sources += platform_web_unittest_files |
| 198 } | 197 } |
| 199 } | 198 } |
| OLD | NEW |