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 # GNU Make based build file. For details on GNU Make see: | 6 # GNU Make based build file. For details on GNU Make see: |
7 # http://www.gnu.org/software/make/manual/make.html | 7 # http://www.gnu.org/software/make/manual/make.html |
8 # | 8 # |
9 # | 9 # |
10 | 10 |
(...skipping 28 matching lines...) Expand all Loading... |
39 | 39 |
40 # | 40 # |
41 # List of sources to compile | 41 # List of sources to compile |
42 # | 42 # |
43 SOURCES:=ppp_entrypoints.cc | 43 SOURCES:=ppp_entrypoints.cc |
44 SOURCES+=array_output.cc audio.cc audio_config.cc core.cc | 44 SOURCES+=array_output.cc audio.cc audio_config.cc core.cc |
45 SOURCES+=file_io.cc file_ref.cc file_system.cc fullscreen.cc | 45 SOURCES+=file_io.cc file_ref.cc file_system.cc fullscreen.cc |
46 SOURCES+=graphics_2d.cc graphics_3d.cc graphics_3d_client.cc | 46 SOURCES+=graphics_2d.cc graphics_3d.cc graphics_3d_client.cc |
47 SOURCES+=image_data.cc input_event.cc instance.cc instance_handle.cc | 47 SOURCES+=image_data.cc input_event.cc instance.cc instance_handle.cc |
48 SOURCES+=lock.cc message_loop.cc module.cc mouse_cursor.cc mouse_lock.cc | 48 SOURCES+=lock.cc message_loop.cc module.cc mouse_cursor.cc mouse_lock.cc |
49 SOURCES+=rect.cc resource.cc | 49 SOURCES+=rect.cc resource.cc trace_event_dev.cc |
50 SOURCES+=url_loader.cc url_request_info.cc url_response_info.cc | 50 SOURCES+=url_loader.cc url_request_info.cc url_response_info.cc |
51 SOURCES+=var.cc var_array_buffer.cc view.cc websocket.cc | 51 SOURCES+=var.cc var_array_buffer.cc view.cc websocket.cc |
52 | 52 |
53 # Utility sources. | 53 # Utility sources. |
54 SOURCES+=paint_aggregator.cc paint_manager.cc simple_thread.cc | 54 SOURCES+=paint_aggregator.cc paint_manager.cc simple_thread.cc |
55 SOURCES+=websocket_api.cc | 55 SOURCES+=websocket_api.cc |
56 | 56 |
57 # | 57 # |
58 # Use the compile macro for each source. | 58 # Use the compile macro for each source. |
59 # | 59 # |
60 $(foreach src,$(SOURCES),$(eval $(call COMPILE_RULE,$(src),-Wno-switch-enum))) | 60 $(foreach src,$(SOURCES),$(eval $(call COMPILE_RULE,$(src),-Wno-switch-enum))) |
61 | 61 |
62 # | 62 # |
63 # Use the lib macro for this target on the list of sources. | 63 # Use the lib macro for this target on the list of sources. |
64 # | 64 # |
65 $(eval $(call LIB_RULE,$(TARGET),$(SOURCES))) | 65 $(eval $(call LIB_RULE,$(TARGET),$(SOURCES))) |
OLD | NEW |