| 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/build/scripts/scripts.gni") | 6 import("//sky/engine/build/scripts/scripts.gni") |
| 7 import("//sky/engine/config.gni") | 7 import("//sky/engine/config.gni") |
| 8 | 8 |
| 9 # Most targets in this file are private actions so use that as the default. | 9 # Most targets in this file are private actions so use that as the default. |
| 10 visibility = [":*"] | 10 visibility = [":*"] |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 | 108 |
| 109 output_name = "sky_platform" | 109 output_name = "sky_platform" |
| 110 | 110 |
| 111 sources = [ | 111 sources = [ |
| 112 "CalculationValue.h", | 112 "CalculationValue.h", |
| 113 "CheckedInt.h", | 113 "CheckedInt.h", |
| 114 "Clock.cpp", | 114 "Clock.cpp", |
| 115 "Clock.h", | 115 "Clock.h", |
| 116 "ContentType.cpp", | 116 "ContentType.cpp", |
| 117 "ContentType.h", | 117 "ContentType.h", |
| 118 "ContextMenu.cpp", | |
| 119 "ContextMenu.h", | |
| 120 "ContextMenuItem.cpp", | |
| 121 "ContextMenuItem.h", | |
| 122 "Cursor.cpp", | 118 "Cursor.cpp", |
| 123 "Cursor.h", | 119 "Cursor.h", |
| 124 "DateComponents.cpp", | 120 "DateComponents.cpp", |
| 125 "DateComponents.h", | 121 "DateComponents.h", |
| 126 "Decimal.cpp", | 122 "Decimal.cpp", |
| 127 "Decimal.h", | 123 "Decimal.h", |
| 128 "EventDispatchForbiddenScope.h", | 124 "EventDispatchForbiddenScope.h", |
| 129 "EventTracer.cpp", | 125 "EventTracer.cpp", |
| 130 "EventTracer.h", | 126 "EventTracer.h", |
| 131 "FloatConversion.h", | 127 "FloatConversion.h", |
| (...skipping 762 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 894 #'cflags': ['-marm'], | 890 #'cflags': ['-marm'], |
| 895 # 'conditions': [ | 891 # 'conditions': [ |
| 896 # ['OS=="android"', { | 892 # ['OS=="android"', { |
| 897 # 'cflags!': ['-mthumb'], | 893 # 'cflags!': ['-mthumb'], |
| 898 # }], | 894 # }], |
| 899 # ], | 895 # ], |
| 900 | 896 |
| 901 deps = [ ":sky_common" ] | 897 deps = [ ":sky_common" ] |
| 902 } | 898 } |
| 903 } | 899 } |
| OLD | NEW |