| 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 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 visibility = [ "//sky/*" ] | 9 visibility = [ "//sky/*" ] |
| 10 | 10 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 "AssertMatchingEnums.cpp", | 42 "AssertMatchingEnums.cpp", |
| 43 "ChromeClientImpl.cpp", | 43 "ChromeClientImpl.cpp", |
| 44 "ChromeClientImpl.h", | 44 "ChromeClientImpl.h", |
| 45 "CompositionUnderlineBuilder.h", | 45 "CompositionUnderlineBuilder.h", |
| 46 "CompositionUnderlineVectorBuilder.cpp", | 46 "CompositionUnderlineVectorBuilder.cpp", |
| 47 "CompositionUnderlineVectorBuilder.h", | 47 "CompositionUnderlineVectorBuilder.h", |
| 48 "EditorClientImpl.cpp", | 48 "EditorClientImpl.cpp", |
| 49 "EditorClientImpl.h", | 49 "EditorClientImpl.h", |
| 50 "FrameLoaderClientImpl.cpp", | 50 "FrameLoaderClientImpl.cpp", |
| 51 "FrameLoaderClientImpl.h", | 51 "FrameLoaderClientImpl.h", |
| 52 "PageWidgetDelegate.cpp", | |
| 53 "PageWidgetDelegate.h", | |
| 54 "SpellCheckerClientImpl.cpp", | 52 "SpellCheckerClientImpl.cpp", |
| 55 "SpellCheckerClientImpl.h", | 53 "SpellCheckerClientImpl.h", |
| 56 "WebArrayBufferConverter.cpp", | 54 "WebArrayBufferConverter.cpp", |
| 57 "WebArrayBufferView.cpp", | 55 "WebArrayBufferView.cpp", |
| 58 "WebCache.cpp", | 56 "WebCache.cpp", |
| 59 "WebCachedURLRequest.cpp", | 57 "WebCachedURLRequest.cpp", |
| 60 "WebDocument.cpp", | 58 "WebDocument.cpp", |
| 61 "WebElement.cpp", | 59 "WebElement.cpp", |
| 62 "WebFontDescription.cpp", | 60 "WebFontDescription.cpp", |
| 63 "WebFontImpl.cpp", | 61 "WebFontImpl.cpp", |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 configs += [ "//sky/engine:config" ] | 156 configs += [ "//sky/engine:config" ] |
| 159 | 157 |
| 160 if (!is_component_build) { | 158 if (!is_component_build) { |
| 161 deps += [ "//sky/engine/core" ] | 159 deps += [ "//sky/engine/core" ] |
| 162 | 160 |
| 163 configs += [ "//sky/engine:inside_blink" ] | 161 configs += [ "//sky/engine:inside_blink" ] |
| 164 | 162 |
| 165 sources += platform_web_unittest_files | 163 sources += platform_web_unittest_files |
| 166 } | 164 } |
| 167 } | 165 } |
| OLD | NEW |