| 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'common', | 8 'target_name': 'common', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'variables': { | 10 'variables': { |
| (...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 396 'common/startup_metric_utils.cc', | 396 'common/startup_metric_utils.cc', |
| 397 'common/startup_metric_utils.h', | 397 'common/startup_metric_utils.h', |
| 398 'common/switch_utils.cc', | 398 'common/switch_utils.cc', |
| 399 'common/switch_utils.h', | 399 'common/switch_utils.h', |
| 400 'common/thumbnail_score.cc', | 400 'common/thumbnail_score.cc', |
| 401 'common/thumbnail_score.h', | 401 'common/thumbnail_score.h', |
| 402 'common/time_format.cc', | 402 'common/time_format.cc', |
| 403 'common/time_format.h', | 403 'common/time_format.h', |
| 404 'common/url_constants.cc', | 404 'common/url_constants.cc', |
| 405 'common/url_constants.h', | 405 'common/url_constants.h', |
| 406 'common/validation_message_messages.h', |
| 406 'common/web_apps.cc', | 407 'common/web_apps.cc', |
| 407 'common/web_apps.h', | 408 'common/web_apps.h', |
| 408 'common/web_resource/web_resource_unpacker.cc', | 409 'common/web_resource/web_resource_unpacker.cc', |
| 409 'common/web_resource/web_resource_unpacker.h', | 410 'common/web_resource/web_resource_unpacker.h', |
| 410 'common/worker_thread_ticker.cc', | 411 'common/worker_thread_ticker.cc', |
| 411 'common/worker_thread_ticker.h', | 412 'common/worker_thread_ticker.h', |
| 412 ], | 413 ], |
| 413 'conditions': [ | 414 'conditions': [ |
| 414 ['enable_extensions==1', { | 415 ['enable_extensions==1', { |
| 415 'sources!': [ | 416 'sources!': [ |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 460 ['exclude', '^common/custom_handlers/'], | 461 ['exclude', '^common/custom_handlers/'], |
| 461 ['exclude', '^common/extensions/'], | 462 ['exclude', '^common/extensions/'], |
| 462 ['exclude', '^common/external_ipc_fuzzer\\.'], | 463 ['exclude', '^common/external_ipc_fuzzer\\.'], |
| 463 ['exclude', '^common/logging_chrome\\.'], | 464 ['exclude', '^common/logging_chrome\\.'], |
| 464 ['exclude', '^common/multi_process_'], | 465 ['exclude', '^common/multi_process_'], |
| 465 ['exclude', '^common/nacl_'], | 466 ['exclude', '^common/nacl_'], |
| 466 ['exclude', '^common/pepper_flash\\.'], | 467 ['exclude', '^common/pepper_flash\\.'], |
| 467 ['exclude', '^common/profiling\\.'], | 468 ['exclude', '^common/profiling\\.'], |
| 468 ['exclude', '^common/service_process_util_'], | 469 ['exclude', '^common/service_process_util_'], |
| 469 ['exclude', '^common/spellcheck_'], | 470 ['exclude', '^common/spellcheck_'], |
| 471 ['exclude', '^common/validation_message_'], |
| 470 ['exclude', '^common/web_apps\\.'], | 472 ['exclude', '^common/web_apps\\.'], |
| 471 # TODO(ios): Include files here as they are made to work; once | 473 # TODO(ios): Include files here as they are made to work; once |
| 472 # everything is online, remove everything below here and just | 474 # everything is online, remove everything below here and just |
| 473 # use the exclusions above. | 475 # use the exclusions above. |
| 474 ['exclude', '\\.(cc|mm)$'], | 476 ['exclude', '\\.(cc|mm)$'], |
| 475 ['include', '_ios\\.(cc|mm)$'], | 477 ['include', '_ios\\.(cc|mm)$'], |
| 476 ['include', '(^|/)ios/'], | 478 ['include', '(^|/)ios/'], |
| 477 ['include', '^common/chrome_version_info\\.cc$'], | 479 ['include', '^common/chrome_version_info\\.cc$'], |
| 478 ['include', '^common/zip'], | 480 ['include', '^common/zip'], |
| 479 ], | 481 ], |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 730 'common/metrics/proto/user_action_event.proto', | 732 'common/metrics/proto/user_action_event.proto', |
| 731 ], | 733 ], |
| 732 'variables': { | 734 'variables': { |
| 733 'proto_in_dir': 'common/metrics/proto', | 735 'proto_in_dir': 'common/metrics/proto', |
| 734 'proto_out_dir': 'chrome/common/metrics/proto', | 736 'proto_out_dir': 'chrome/common/metrics/proto', |
| 735 }, | 737 }, |
| 736 'includes': [ '../build/protoc.gypi' ], | 738 'includes': [ '../build/protoc.gypi' ], |
| 737 }, | 739 }, |
| 738 ], | 740 ], |
| 739 } | 741 } |
| OLD | NEW |