| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 # HOW TO WRITE CONDITIONALS IN THIS FILE | 5 # HOW TO WRITE CONDITIONALS IN THIS FILE |
| 6 # ====================================== | 6 # ====================================== |
| 7 # | 7 # |
| 8 # In many other places, one would write a conditional that expresses all the | 8 # In many other places, one would write a conditional that expresses all the |
| 9 # cases when a source file is used or unused, and then either add or subtract | 9 # cases when a source file is used or unused, and then either add or subtract |
| 10 # it from the sources list in that case | 10 # it from the sources list in that case |
| (...skipping 951 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 962 "trace_event/trace_log_constants.cc", | 962 "trace_event/trace_log_constants.cc", |
| 963 "trace_event/trace_sampling_thread.cc", | 963 "trace_event/trace_sampling_thread.cc", |
| 964 "trace_event/trace_sampling_thread.h", | 964 "trace_event/trace_sampling_thread.h", |
| 965 "trace_event/tracing_agent.cc", | 965 "trace_event/tracing_agent.cc", |
| 966 "trace_event/tracing_agent.h", | 966 "trace_event/tracing_agent.h", |
| 967 "tracked_objects.cc", | 967 "tracked_objects.cc", |
| 968 "tracked_objects.h", | 968 "tracked_objects.h", |
| 969 "tracking_info.cc", | 969 "tracking_info.cc", |
| 970 "tracking_info.h", | 970 "tracking_info.h", |
| 971 "tuple.h", | 971 "tuple.h", |
| 972 "unguessable_token.cc", |
| 973 "unguessable_token.h", |
| 972 "value_conversions.cc", | 974 "value_conversions.cc", |
| 973 "value_conversions.h", | 975 "value_conversions.h", |
| 974 "values.cc", | 976 "values.cc", |
| 975 "values.h", | 977 "values.h", |
| 976 "version.cc", | 978 "version.cc", |
| 977 "version.h", | 979 "version.h", |
| 978 "vlog.cc", | 980 "vlog.cc", |
| 979 "vlog.h", | 981 "vlog.h", |
| 980 "win/enum_variant.cc", | 982 "win/enum_variant.cc", |
| 981 "win/enum_variant.h", | 983 "win/enum_variant.h", |
| (...skipping 998 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1980 "trace_event/memory_allocator_dump_unittest.cc", | 1982 "trace_event/memory_allocator_dump_unittest.cc", |
| 1981 "trace_event/memory_dump_manager_unittest.cc", | 1983 "trace_event/memory_dump_manager_unittest.cc", |
| 1982 "trace_event/process_memory_dump_unittest.cc", | 1984 "trace_event/process_memory_dump_unittest.cc", |
| 1983 "trace_event/trace_config_unittest.cc", | 1985 "trace_event/trace_config_unittest.cc", |
| 1984 "trace_event/trace_event_argument_unittest.cc", | 1986 "trace_event/trace_event_argument_unittest.cc", |
| 1985 "trace_event/trace_event_synthetic_delay_unittest.cc", | 1987 "trace_event/trace_event_synthetic_delay_unittest.cc", |
| 1986 "trace_event/trace_event_system_stats_monitor_unittest.cc", | 1988 "trace_event/trace_event_system_stats_monitor_unittest.cc", |
| 1987 "trace_event/trace_event_unittest.cc", | 1989 "trace_event/trace_event_unittest.cc", |
| 1988 "tracked_objects_unittest.cc", | 1990 "tracked_objects_unittest.cc", |
| 1989 "tuple_unittest.cc", | 1991 "tuple_unittest.cc", |
| 1992 "unguessable_token_unittest.cc", |
| 1990 "values_unittest.cc", | 1993 "values_unittest.cc", |
| 1991 "version_unittest.cc", | 1994 "version_unittest.cc", |
| 1992 "vlog_unittest.cc", | 1995 "vlog_unittest.cc", |
| 1993 "win/dllmain.cc", | 1996 "win/dllmain.cc", |
| 1994 "win/enum_variant_unittest.cc", | 1997 "win/enum_variant_unittest.cc", |
| 1995 "win/event_trace_consumer_unittest.cc", | 1998 "win/event_trace_consumer_unittest.cc", |
| 1996 "win/event_trace_controller_unittest.cc", | 1999 "win/event_trace_controller_unittest.cc", |
| 1997 "win/event_trace_provider_unittest.cc", | 2000 "win/event_trace_provider_unittest.cc", |
| 1998 "win/i18n_unittest.cc", | 2001 "win/i18n_unittest.cc", |
| 1999 "win/iunknown_impl_unittest.cc", | 2002 "win/iunknown_impl_unittest.cc", |
| (...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2455 testonly = true | 2458 testonly = true |
| 2456 deps = [ | 2459 deps = [ |
| 2457 ":base_java", | 2460 ":base_java", |
| 2458 ] | 2461 ] |
| 2459 java_files = [ | 2462 java_files = [ |
| 2460 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java", | 2463 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java", |
| 2461 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java", | 2464 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java", |
| 2462 ] | 2465 ] |
| 2463 } | 2466 } |
| 2464 } | 2467 } |
| OLD | NEW |