| 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 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 456 ], | 456 ], |
| 457 }], | 457 }], |
| 458 ['enable_printing!=0', { | 458 ['enable_printing!=0', { |
| 459 'dependencies': [ | 459 'dependencies': [ |
| 460 '<(DEPTH)/printing/printing.gyp:printing', | 460 '<(DEPTH)/printing/printing.gyp:printing', |
| 461 ], | 461 ], |
| 462 }], | 462 }], |
| 463 ['OS=="android"', { | 463 ['OS=="android"', { |
| 464 'sources/': [ | 464 'sources/': [ |
| 465 ['exclude', '^common/chrome_version_info_posix.cc'], | 465 ['exclude', '^common/chrome_version_info_posix.cc'], |
| 466 ['exclude', '^common/importer/'], |
| 467 ['include', '^common/importer/imported_favicon_usage.cc$'], |
| 468 ['include', '^common/importer/imported_favicon_usage.h$'], |
| 466 ['exclude', '^common/service_'], | 469 ['exclude', '^common/service_'], |
| 467 ], | 470 ], |
| 468 'sources!': [ | 471 'sources!': [ |
| 469 'common/badge_util.cc', | 472 'common/badge_util.cc', |
| 470 'common/extensions/api/extension_action/browser_action_handler.cc', | 473 'common/extensions/api/extension_action/browser_action_handler.cc', |
| 471 'common/extensions/api/extension_action/page_action_handler.cc', | 474 'common/extensions/api/extension_action/page_action_handler.cc', |
| 472 'common/extensions/api/spellcheck/spellcheck_handler.cc', | 475 'common/extensions/api/spellcheck/spellcheck_handler.cc', |
| 473 'common/extensions/manifest_handlers/minimum_chrome_version_checker.
cc', | 476 'common/extensions/manifest_handlers/minimum_chrome_version_checker.
cc', |
| 474 'common/extensions/manifest_handlers/nacl_modules_handler.cc', | 477 'common/extensions/manifest_handlers/nacl_modules_handler.cc', |
| 475 'common/icon_with_badge_image_source.cc', | 478 'common/icon_with_badge_image_source.cc', |
| 476 'common/importer/imported_bookmark_entry.cc', | |
| 477 'common/importer/importer_bridge.cc', | |
| 478 'common/importer/importer_data_types.cc', | |
| 479 'common/importer/importer_url_row.cc', | |
| 480 'common/net/url_util.cc', | 479 'common/net/url_util.cc', |
| 481 'common/spellcheck_common.cc', | 480 'common/spellcheck_common.cc', |
| 482 ], | 481 ], |
| 483 }], | 482 }], |
| 484 ['OS=="win"', { | 483 ['OS=="win"', { |
| 485 'include_dirs': [ | 484 'include_dirs': [ |
| 486 '<(DEPTH)/breakpad/src', | 485 '<(DEPTH)/breakpad/src', |
| 487 '<(DEPTH)/third_party/wtl/include', | 486 '<(DEPTH)/third_party/wtl/include', |
| 488 ], | 487 ], |
| 489 }], | 488 }], |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 738 'common/metrics/proto/user_action_event.proto', | 737 'common/metrics/proto/user_action_event.proto', |
| 739 ], | 738 ], |
| 740 'variables': { | 739 'variables': { |
| 741 'proto_in_dir': 'common/metrics/proto', | 740 'proto_in_dir': 'common/metrics/proto', |
| 742 'proto_out_dir': 'chrome/common/metrics/proto', | 741 'proto_out_dir': 'chrome/common/metrics/proto', |
| 743 }, | 742 }, |
| 744 'includes': [ '../build/protoc.gypi' ], | 743 'includes': [ '../build/protoc.gypi' ], |
| 745 }, | 744 }, |
| 746 ], | 745 ], |
| 747 } | 746 } |
| OLD | NEW |