OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
404 # use the exclusions above. | 404 # use the exclusions above. |
405 ['exclude', '\\.(cc|mm)$'], | 405 ['exclude', '\\.(cc|mm)$'], |
406 ['include', '_ios\\.(cc|mm)$'], | 406 ['include', '_ios\\.(cc|mm)$'], |
407 ['include', '(^|/)ios/'], | 407 ['include', '(^|/)ios/'], |
408 ['include', '^common/chrome_version_info\\.cc$'], | 408 ['include', '^common/chrome_version_info\\.cc$'], |
409 ['include', '^common/zip'], | 409 ['include', '^common/zip'], |
410 ], | 410 ], |
411 }], | 411 }], |
412 ['OS=="android"', { | 412 ['OS=="android"', { |
413 'sources/': [ | 413 'sources/': [ |
| 414 ['exclude', '^common/automation_'], |
414 ['exclude', '^common/chrome_version_info_posix.cc'], | 415 ['exclude', '^common/chrome_version_info_posix.cc'], |
415 ['exclude', '^common/service_'], | 416 ['exclude', '^common/service_'], |
416 ], | 417 ], |
417 'dependencies!': [ | 418 'dependencies!': [ |
418 '<(DEPTH)/chrome/app/policy/cloud_policy_codegen.gyp:policy', | 419 '<(DEPTH)/chrome/app/policy/cloud_policy_codegen.gyp:policy', |
419 ], | 420 ], |
420 }], | 421 }], |
421 ['OS=="win"', { | 422 ['OS=="win"', { |
422 'include_dirs': [ | 423 'include_dirs': [ |
423 '<(DEPTH)/third_party/wtl/include', | 424 '<(DEPTH)/third_party/wtl/include', |
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
659 'common/metrics/proto/user_action_event.proto', | 660 'common/metrics/proto/user_action_event.proto', |
660 ], | 661 ], |
661 'variables': { | 662 'variables': { |
662 'proto_in_dir': 'common/metrics/proto', | 663 'proto_in_dir': 'common/metrics/proto', |
663 'proto_out_dir': 'chrome/common/metrics/proto', | 664 'proto_out_dir': 'chrome/common/metrics/proto', |
664 }, | 665 }, |
665 'includes': [ '../build/protoc.gypi' ], | 666 'includes': [ '../build/protoc.gypi' ], |
666 }, | 667 }, |
667 ], | 668 ], |
668 } | 669 } |
OLD | NEW |