| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//media/media_options.gni") | 7 import("//media/media_options.gni") |
| 8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
| 9 import("//ppapi/features/features.gni") | 9 import("//ppapi/features/features.gni") |
| 10 import("//sandbox/features.gni") | 10 import("//sandbox/features.gni") |
| (...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 319 "text_input_client_messages.h", | 319 "text_input_client_messages.h", |
| 320 "text_input_state.cc", | 320 "text_input_state.cc", |
| 321 "text_input_state.h", | 321 "text_input_state.h", |
| 322 "url_schemes.cc", | 322 "url_schemes.cc", |
| 323 "url_schemes.h", | 323 "url_schemes.h", |
| 324 "user_agent.cc", | 324 "user_agent.cc", |
| 325 "utility_messages.h", | 325 "utility_messages.h", |
| 326 "view_message_enums.h", | 326 "view_message_enums.h", |
| 327 "view_messages.h", | 327 "view_messages.h", |
| 328 "worker_messages.h", | 328 "worker_messages.h", |
| 329 "worker_use_counter.cc", |
| 330 "worker_use_counter.h", |
| 329 "zygote_commands_linux.h", | 331 "zygote_commands_linux.h", |
| 330 ] | 332 ] |
| 331 | 333 |
| 332 configs += [ | 334 configs += [ |
| 333 "//content:content_implementation", | 335 "//content:content_implementation", |
| 334 "//build/config:precompiled_headers", | 336 "//build/config:precompiled_headers", |
| 335 "//build/config/compiler:no_size_t_to_int_warning", | 337 "//build/config/compiler:no_size_t_to_int_warning", |
| 336 "//media/gpu:gpu_config", | 338 "//media/gpu:gpu_config", |
| 337 ] | 339 ] |
| 338 | 340 |
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 598 "//ui/gfx/geometry/mojo", | 600 "//ui/gfx/geometry/mojo", |
| 599 "//ui/gfx/mojo", | 601 "//ui/gfx/mojo", |
| 600 "//url/mojo:url_mojom_gurl", | 602 "//url/mojo:url_mojom_gurl", |
| 601 "//url/mojo:url_mojom_origin", | 603 "//url/mojo:url_mojom_origin", |
| 602 ] | 604 ] |
| 603 | 605 |
| 604 export_class_attribute = "CONTENT_EXPORT" | 606 export_class_attribute = "CONTENT_EXPORT" |
| 605 export_define = "CONTENT_IMPLEMENTATION=1" | 607 export_define = "CONTENT_IMPLEMENTATION=1" |
| 606 export_header = "content/common/content_export.h" | 608 export_header = "content/common/content_export.h" |
| 607 } | 609 } |
| OLD | NEW |