| 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("//testing/test.gni") | 5 import("//testing/test.gni") | 
| 6 import("//third_party/mojo/src/mojo/public/mojo.gni") | 6 import("//third_party/mojo/src/mojo/public/mojo.gni") | 
| 7 import("//third_party/mojo/src/mojo/public/mojo_application.gni") | 7 import("//third_party/mojo/src/mojo/public/mojo_application.gni") | 
| 8 | 8 | 
| 9 action("generate_blink_resource_map") { | 9 action("generate_blink_resource_map") { | 
| 10   script = "//mojo/services/html_viewer/generate_blink_resource_map.py" | 10   script = "//mojo/services/html_viewer/generate_blink_resource_map.py" | 
| (...skipping 22 matching lines...) Expand all  Loading... | 
| 33     "ax_provider_impl.h", | 33     "ax_provider_impl.h", | 
| 34     "blink_basic_type_converters.cc", | 34     "blink_basic_type_converters.cc", | 
| 35     "blink_basic_type_converters.h", | 35     "blink_basic_type_converters.h", | 
| 36     "blink_input_events_type_converters.cc", | 36     "blink_input_events_type_converters.cc", | 
| 37     "blink_input_events_type_converters.h", | 37     "blink_input_events_type_converters.h", | 
| 38     "blink_platform_impl.cc", | 38     "blink_platform_impl.cc", | 
| 39     "blink_platform_impl.h", | 39     "blink_platform_impl.h", | 
| 40     "blink_resource_constants.h", | 40     "blink_resource_constants.h", | 
| 41     "blink_url_request_type_converters.cc", | 41     "blink_url_request_type_converters.cc", | 
| 42     "blink_url_request_type_converters.h", | 42     "blink_url_request_type_converters.h", | 
|  | 43     "discardable_memory_allocator.cc", | 
|  | 44     "discardable_memory_allocator.h", | 
| 43     "html_document.cc", | 45     "html_document.cc", | 
| 44     "html_document.h", | 46     "html_document.h", | 
| 45     "mojo_blink_platform_impl.cc", | 47     "mojo_blink_platform_impl.cc", | 
| 46     "mojo_blink_platform_impl.h", | 48     "mojo_blink_platform_impl.h", | 
| 47     "webclipboard_impl.cc", | 49     "webclipboard_impl.cc", | 
| 48     "webclipboard_impl.h", | 50     "webclipboard_impl.h", | 
| 49     "webcookiejar_impl.cc", | 51     "webcookiejar_impl.cc", | 
| 50     "webcookiejar_impl.h", | 52     "webcookiejar_impl.h", | 
| 51     "weblayertreeview_impl.cc", | 53     "weblayertreeview_impl.cc", | 
| 52     "weblayertreeview_impl.h", | 54     "weblayertreeview_impl.h", | 
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 169     deps = [ | 171     deps = [ | 
| 170       ":lib", | 172       ":lib", | 
| 171     ] | 173     ] | 
| 172   } | 174   } | 
| 173 } | 175 } | 
| 174 | 176 | 
| 175 test("tests") { | 177 test("tests") { | 
| 176   output_name = "html_viewer_unittests" | 178   output_name = "html_viewer_unittests" | 
| 177   sources = [ | 179   sources = [ | 
| 178     "ax_provider_impl_unittest.cc", | 180     "ax_provider_impl_unittest.cc", | 
|  | 181     "discardable_memory_allocator_unittest.cc", | 
| 179   ] | 182   ] | 
| 180   deps = [ | 183   deps = [ | 
| 181     ":lib", | 184     ":lib", | 
| 182     "//base/test:run_all_unittests", | 185     "//base/test:run_all_unittests", | 
| 183   ] | 186   ] | 
| 184 } | 187 } | 
| OLD | NEW | 
|---|