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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', | 49 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', |
50 '<(DEPTH)/third_party/libxml/libxml.gyp:libxml', | 50 '<(DEPTH)/third_party/libxml/libxml.gyp:libxml', |
51 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite', | 51 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite', |
52 '<(DEPTH)/third_party/zlib/zlib.gyp:zlib', | 52 '<(DEPTH)/third_party/zlib/zlib.gyp:zlib', |
53 '<(DEPTH)/ui/ui.gyp:ui_resources', | 53 '<(DEPTH)/ui/ui.gyp:ui_resources', |
54 '<(DEPTH)/ui/ui.gyp:ui_resources_standard', | 54 '<(DEPTH)/ui/ui.gyp:ui_resources_standard', |
55 '<(DEPTH)/webkit/support/webkit_support.gyp:glue', | 55 '<(DEPTH)/webkit/support/webkit_support.gyp:glue', |
56 ], | 56 ], |
57 'sources': [ | 57 'sources': [ |
58 'common/all_messages.h', | 58 'common/all_messages.h', |
| 59 'common/app_mode.cc', |
| 60 'common/app_mode.h', |
59 'common/attrition_experiments.h', | 61 'common/attrition_experiments.h', |
60 'common/auto_start_linux.cc', | 62 'common/auto_start_linux.cc', |
61 'common/auto_start_linux.h', | 63 'common/auto_start_linux.h', |
62 'common/autofill_messages.h', | 64 'common/autofill_messages.h', |
63 'common/automation_constants.cc', | 65 'common/automation_constants.cc', |
64 'common/automation_constants.h', | 66 'common/automation_constants.h', |
65 'common/automation_id.cc', | 67 'common/automation_id.cc', |
66 'common/automation_id.h', | 68 'common/automation_id.h', |
67 'common/automation_messages.cc', | 69 'common/automation_messages.cc', |
68 'common/automation_messages.h', | 70 'common/automation_messages.h', |
(...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
478 'common/metrics/proto/user_action_event.proto', | 480 'common/metrics/proto/user_action_event.proto', |
479 ], | 481 ], |
480 'variables': { | 482 'variables': { |
481 'proto_in_dir': 'common/metrics/proto', | 483 'proto_in_dir': 'common/metrics/proto', |
482 'proto_out_dir': 'chrome/common/metrics/proto', | 484 'proto_out_dir': 'chrome/common/metrics/proto', |
483 }, | 485 }, |
484 'includes': [ '../build/protoc.gypi' ], | 486 'includes': [ '../build/protoc.gypi' ], |
485 }, | 487 }, |
486 ], | 488 ], |
487 } | 489 } |
OLD | NEW |