| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//chrome/version.gni") | 5 import("//chrome/version.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 component("common") { | 8 component("common") { |
| 9 output_name = "blimp_common" | 9 output_name = "blimp_common" |
| 10 sources = [ | 10 sources = [ |
| 11 "blimp_common_export.h", | 11 "blimp_common_export.h", |
| 12 "blob_cache/blob_cache.h", | 12 "blob_cache/blob_cache.h", |
| 13 "blob_cache/id_util.cc", | 13 "blob_cache/id_util.cc", |
| 14 "blob_cache/id_util.h", | 14 "blob_cache/id_util.h", |
| 15 "blob_cache/in_memory_blob_cache.cc", | 15 "blob_cache/in_memory_blob_cache.cc", |
| 16 "blob_cache/in_memory_blob_cache.h", | 16 "blob_cache/in_memory_blob_cache.h", |
| 17 "compositor/blimp_task_graph_runner.cc", | |
| 18 "compositor/blimp_task_graph_runner.h", | |
| 19 "compositor/reference_tracker.cc", | 17 "compositor/reference_tracker.cc", |
| 20 "compositor/reference_tracker.h", | 18 "compositor/reference_tracker.h", |
| 21 "create_blimp_message.cc", | 19 "create_blimp_message.cc", |
| 22 "create_blimp_message.h", | 20 "create_blimp_message.h", |
| 23 "get_client_token.cc", | 21 "get_client_token.cc", |
| 24 "get_client_token.h", | 22 "get_client_token.h", |
| 25 "logging.cc", | 23 "logging.cc", |
| 26 "logging.h", | 24 "logging.h", |
| 27 "switches.cc", | 25 "switches.cc", |
| 28 "switches.h", | 26 "switches.h", |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 "//crypto", | 78 "//crypto", |
| 81 "//testing/gmock", | 79 "//testing/gmock", |
| 82 "//testing/gtest", | 80 "//testing/gtest", |
| 83 ] | 81 ] |
| 84 } | 82 } |
| 85 | 83 |
| 86 process_version("protocol_version") { | 84 process_version("protocol_version") { |
| 87 template_file = "protocol_version.h.version" | 85 template_file = "protocol_version.h.version" |
| 88 output = "$target_gen_dir/protocol_version.h" | 86 output = "$target_gen_dir/protocol_version.h" |
| 89 } | 87 } |
| OLD | NEW |