| 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 |
| 11 platform_web_unittest_files = [ | 11 platform_web_unittest_files = [ |
| 12 "//sky/engine/platform/graphics/BitmapImageTest.cpp", | 12 "//sky/engine/platform/graphics/BitmapImageTest.cpp", |
| 13 "//sky/engine/platform/graphics/DeferredImageDecoderTest.cpp", | 13 "//sky/engine/platform/graphics/DeferredImageDecoderTest.cpp", |
| 14 "//sky/engine/platform/graphics/ImageDecodingStoreTest.cpp", | 14 "//sky/engine/platform/graphics/ImageDecodingStoreTest.cpp", |
| 15 "//sky/engine/platform/graphics/ImageFrameGeneratorTest.cpp", | 15 "//sky/engine/platform/graphics/ImageFrameGeneratorTest.cpp", |
| 16 "//sky/engine/platform/graphics/OpaqueRectTrackingContentLayerDelegateTest.cpp
", | |
| 17 "//sky/engine/platform/graphics/test/MockImageDecoder.h", | 16 "//sky/engine/platform/graphics/test/MockImageDecoder.h", |
| 18 "//sky/engine/platform/graphics/test/MockWebGraphicsContext3D.h", | 17 "//sky/engine/platform/graphics/test/MockWebGraphicsContext3D.h", |
| 19 "//sky/engine/platform/image-decoders/gif/GIFImageDecoderTest.cpp", | 18 "//sky/engine/platform/image-decoders/gif/GIFImageDecoderTest.cpp", |
| 20 "//sky/engine/platform/image-decoders/jpeg/JPEGImageDecoderTest.cpp", | 19 "//sky/engine/platform/image-decoders/jpeg/JPEGImageDecoderTest.cpp", |
| 21 ] | 20 ] |
| 22 | 21 |
| 23 component("web") { | 22 component("web") { |
| 24 output_name = "sky_web" | 23 output_name = "sky_web" |
| 25 | 24 |
| 26 deps = [ | 25 deps = [ |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 configs += [ "//sky/engine:config" ] | 109 configs += [ "//sky/engine:config" ] |
| 111 | 110 |
| 112 if (!is_component_build) { | 111 if (!is_component_build) { |
| 113 deps += [ "//sky/engine/core" ] | 112 deps += [ "//sky/engine/core" ] |
| 114 | 113 |
| 115 configs += [ "//sky/engine:inside_blink" ] | 114 configs += [ "//sky/engine:inside_blink" ] |
| 116 | 115 |
| 117 sources += platform_web_unittest_files | 116 sources += platform_web_unittest_files |
| 118 } | 117 } |
| 119 } | 118 } |
| OLD | NEW |