| 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 # File lists shared with GN build. | 7 # File lists shared with GN build. |
| 8 'chrome_common_sources': [ | 8 'chrome_common_sources': [ |
| 9 'common/all_messages.h', | 9 'common/all_messages.h', |
| 10 'common/attrition_experiments.h', | 10 'common/attrition_experiments.h', |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 'common/media/webrtc_logging_messages.h', | 61 'common/media/webrtc_logging_messages.h', |
| 62 'common/media_galleries/metadata_types.h', | 62 'common/media_galleries/metadata_types.h', |
| 63 'common/multi_process_lock.h', | 63 'common/multi_process_lock.h', |
| 64 'common/multi_process_lock_linux.cc', | 64 'common/multi_process_lock_linux.cc', |
| 65 'common/multi_process_lock_mac.cc', | 65 'common/multi_process_lock_mac.cc', |
| 66 'common/multi_process_lock_win.cc', | 66 'common/multi_process_lock_win.cc', |
| 67 'common/partial_circular_buffer.cc', | 67 'common/partial_circular_buffer.cc', |
| 68 'common/partial_circular_buffer.h', | 68 'common/partial_circular_buffer.h', |
| 69 'common/pref_names_util.cc', | 69 'common/pref_names_util.cc', |
| 70 'common/pref_names_util.h', | 70 'common/pref_names_util.h', |
| 71 'common/prefetch_argument_win.cc', |
| 72 'common/prefetch_argument_win.h', |
| 71 'common/prerender_types.h', | 73 'common/prerender_types.h', |
| 72 'common/profiling.cc', | 74 'common/profiling.cc', |
| 73 'common/profiling.h', | 75 'common/profiling.h', |
| 74 'common/ref_counted_util.h', | 76 'common/ref_counted_util.h', |
| 75 'common/render_messages.cc', | 77 'common/render_messages.cc', |
| 76 'common/render_messages.h', | 78 'common/render_messages.h', |
| 77 'common/resource_usage_reporter_type_converters.cc', | 79 'common/resource_usage_reporter_type_converters.cc', |
| 78 'common/resource_usage_reporter_type_converters.h', | 80 'common/resource_usage_reporter_type_converters.h', |
| 79 'common/safe_browsing/safebrowsing_messages.h', | 81 'common/safe_browsing/safebrowsing_messages.h', |
| 80 'common/search_provider.h', | 82 'common/search_provider.h', |
| (...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 'sources': [ | 386 'sources': [ |
| 385 'common/extensions/api/input_ime/input_components_handler.cc', | 387 'common/extensions/api/input_ime/input_components_handler.cc', |
| 386 'common/extensions/api/input_ime/input_components_handler.h', | 388 'common/extensions/api/input_ime/input_components_handler.h', |
| 387 ] | 389 ] |
| 388 }] | 390 }] |
| 389 ], | 391 ], |
| 390 }], | 392 }], |
| 391 ['enable_extensions==1 and chromeos==1', { | 393 ['enable_extensions==1 and chromeos==1', { |
| 392 'sources': [ '<@(chrome_common_extensions_chromeos_sources)' ], | 394 'sources': [ '<@(chrome_common_extensions_chromeos_sources)' ], |
| 393 }], | 395 }], |
| 396 ['OS=="win"', { |
| 397 'dependencies': [ |
| 398 '<(DEPTH)/components/components.gyp:startup_metric_utils_common', |
| 399 ], |
| 400 }], |
| 394 ['OS=="win" or OS=="mac"', { | 401 ['OS=="win" or OS=="mac"', { |
| 395 'sources': [ '<@(chrome_common_win_mac_sources)' ], | 402 'sources': [ '<@(chrome_common_win_mac_sources)' ], |
| 396 }], | 403 }], |
| 397 ['OS=="win" or OS=="mac" or chromeos==1', { | 404 ['OS=="win" or OS=="mac" or chromeos==1', { |
| 398 'sources': [ '<@(chrome_common_networking_private_sources)' ], | 405 'sources': [ '<@(chrome_common_networking_private_sources)' ], |
| 399 'dependencies': [ | 406 'dependencies': [ |
| 400 '../third_party/boringssl/boringssl.gyp:boringssl', | 407 '../third_party/boringssl/boringssl.gyp:boringssl', |
| 401 ], | 408 ], |
| 402 }], | 409 }], |
| 403 ['OS=="mac"', { | 410 ['OS=="mac"', { |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 639 'sources': [ | 646 'sources': [ |
| 640 'common/resource_usage_reporter.mojom', | 647 'common/resource_usage_reporter.mojom', |
| 641 ], | 648 ], |
| 642 'dependencies': [ | 649 'dependencies': [ |
| 643 '../mojo/mojo_base.gyp:mojo_environment_chromium', | 650 '../mojo/mojo_base.gyp:mojo_environment_chromium', |
| 644 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', | 651 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', |
| 645 ], | 652 ], |
| 646 }, | 653 }, |
| 647 ], | 654 ], |
| 648 } | 655 } |
| OLD | NEW |